diff --git a/grammar.js b/grammar.js index a0eb7bb..044d389 100644 --- a/grammar.js +++ b/grammar.js @@ -712,12 +712,12 @@ module.exports = grammar({ ]; // @ts-ignore - return choice(...table.map(([fn, operator, precedence]) => fn(precedence, seq( + return prec(13, choice(...table.map(([fn, operator, precedence]) => fn(precedence, seq( field('left', $.primary_expression), // @ts-ignore field('operator', operator), field('right', $.primary_expression), - )))); + ))))); }, unary_operator: $ => prec(PREC.unary, seq( @@ -725,18 +725,17 @@ module.exports = grammar({ field('argument', $.primary_expression), )), - sequence_operation: $ => prec(23, seq(choice( + sequence_operation: $ => seq(choice( $.in_operation, $.not_in_operation, - $.concatenation, + $.binary_operator, $.subscript, $.call, - ))), + )), in_operation: $ => prec.left(3, seq(choice($.list_comprehension, $.dictionary_comprehension, $.list, $.dictionary), 'in', choice($.list_comprehension, $.dictionary_comprehension, $.list, $.dictionary))), not_in_operation: $ => prec.left(11, seq(choice($.list_comprehension, $.dictionary_comprehension, $.list, $.dictionary), 'not', 'in', $.expression)), - concatenation: $ => prec.left(12, seq(choice($.list_comprehension, $.dictionary_comprehension, $.list, $.dictionary), '+', $.expression)), - + comparison_operator: $ => prec.left(2, seq( choice($.primary_expression,$.identifier,$.dotted_name, $.selector_expression), repeat1(seq( diff --git a/src/grammar.json b/src/grammar.json index 9e3120d..89137cd 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2133,7 +2133,7 @@ }, { "type": "SYMBOL", - "name": "test" + "name": "expression" } ] }, @@ -2159,405 +2159,409 @@ ] }, "binary_operator": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_LEFT", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "+" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 19, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "*" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 19, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "/" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 19, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "%" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 19, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "//" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 21, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "**" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 14, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "|" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 15, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" + "type": "PREC", + "value": 13, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 18, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "&" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 18, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 19, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 19, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "^" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 19, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 19, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "//" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 21, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "**" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<<" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "primary_expression" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">>" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "primary_expression" + ] + } + }, + { + "type": "PREC_LEFT", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } } - } - ] + ] + } } - } - ] + ] + } }, "unary_operator": { "type": "PREC", @@ -2598,38 +2602,34 @@ } }, "sequence_operation": { - "type": "PREC", - "value": 23, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "in_operation" - }, - { - "type": "SYMBOL", - "name": "not_in_operation" - }, - { - "type": "SYMBOL", - "name": "concatenation" - }, - { - "type": "SYMBOL", - "name": "subscript" - }, - { - "type": "SYMBOL", - "name": "call" - } - ] - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "in_operation" + }, + { + "type": "SYMBOL", + "name": "not_in_operation" + }, + { + "type": "SYMBOL", + "name": "binary_operator" + }, + { + "type": "SYMBOL", + "name": "subscript" + }, + { + "type": "SYMBOL", + "name": "call" + } + ] + } + ] }, "in_operation": { "type": "PREC_LEFT", @@ -2728,44 +2728,6 @@ ] } }, - "concatenation": { - "type": "PREC_LEFT", - "value": 12, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "list_comprehension" - }, - { - "type": "SYMBOL", - "name": "dictionary_comprehension" - }, - { - "type": "SYMBOL", - "name": "list" - }, - { - "type": "SYMBOL", - "name": "dictionary" - } - ] - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - }, "comparison_operator": { "type": "PREC_LEFT", "value": 2, diff --git a/src/node-types.json b/src/node-types.json index de51004..5fb2d69 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -794,37 +794,6 @@ ] } }, - { - "type": "concatenation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "dictionary", - "named": true - }, - { - "type": "dictionary_comprehension", - "named": true - }, - { - "type": "expression", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "list_comprehension", - "named": true - } - ] - } - }, { "type": "conditional_expression", "named": true, @@ -2121,11 +2090,11 @@ "required": true, "types": [ { - "type": "call", + "type": "binary_operator", "named": true }, { - "type": "concatenation", + "type": "call", "named": true }, { @@ -2735,11 +2704,11 @@ }, { "type": "float", - "named": false + "named": true }, { "type": "float", - "named": true + "named": false }, { "type": "for", diff --git a/src/parser.c b/src/parser.c index 15ece03..ab885c8 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3289 -#define LARGE_STATE_COUNT 144 -#define SYMBOL_COUNT 225 +#define STATE_COUNT 3227 +#define LARGE_STATE_COUNT 116 +#define SYMBOL_COUNT 224 #define ALIAS_COUNT 3 #define TOKEN_COUNT 113 #define EXTERNAL_TOKEN_COUNT 11 @@ -183,67 +183,66 @@ enum { sym_sequence_operation = 164, sym_in_operation = 165, sym_not_in_operation = 166, - sym_concatenation = 167, - sym_comparison_operator = 168, - sym_assignment = 169, - sym_augmented_assignment = 170, - sym_unification = 171, - sym_select_suffix = 172, - sym_attribute = 173, - sym_optional_attribute = 174, - sym_optional_item = 175, - sym_null_coalesce = 176, - sym_subscript = 177, - sym_slice = 178, - sym_call = 179, - sym_typed_parameter = 180, - sym_type = 181, - sym_schema_type = 182, - sym_union_type = 183, - sym_function_type = 184, - sym_basic_type = 185, - sym_list_type = 186, - sym_dict_type = 187, - sym_literal_type = 188, - sym_keyword_argument = 189, - sym_list = 190, - sym_dictionary = 191, - sym_dict_expr = 192, - sym_pair = 193, - sym_list_comprehension = 194, - sym_dictionary_comprehension = 195, - sym__comprehension_clauses = 196, - sym__collection_elements = 197, - sym_for_in_clause = 198, - sym_if_clause = 199, - sym_conditional_expression = 200, - sym_string = 201, - sym_string_content = 202, - aux_sym_module_repeat1 = 203, - aux_sym_import_prefix_repeat1 = 204, - aux_sym_if_statement_repeat1 = 205, - aux_sym_quant_target_repeat1 = 206, - aux_sym_check_statement_repeat1 = 207, - aux_sym_argument_list_repeat1 = 208, - aux_sym_decorated_definition_repeat1 = 209, - aux_sym_dotted_name_repeat1 = 210, - aux_sym__parameters_repeat1 = 211, - aux_sym_selector_expression_repeat1 = 212, - aux_sym_long_expression_repeat1 = 213, - aux_sym_config_entries_repeat1 = 214, - aux_sym_comparison_operator_repeat1 = 215, - aux_sym_subscript_repeat1 = 216, - aux_sym_union_type_repeat1 = 217, - aux_sym_function_type_repeat1 = 218, - aux_sym_dictionary_repeat1 = 219, - aux_sym_dict_expr_repeat1 = 220, - aux_sym__comprehension_clauses_repeat1 = 221, - aux_sym__collection_elements_repeat1 = 222, - aux_sym_raw_string_repeat1 = 223, - aux_sym_string_content_repeat1 = 224, - anon_alias_sym_isnot = 225, - anon_alias_sym_notin = 226, - anon_alias_sym_null_assignment = 227, + sym_comparison_operator = 167, + sym_assignment = 168, + sym_augmented_assignment = 169, + sym_unification = 170, + sym_select_suffix = 171, + sym_attribute = 172, + sym_optional_attribute = 173, + sym_optional_item = 174, + sym_null_coalesce = 175, + sym_subscript = 176, + sym_slice = 177, + sym_call = 178, + sym_typed_parameter = 179, + sym_type = 180, + sym_schema_type = 181, + sym_union_type = 182, + sym_function_type = 183, + sym_basic_type = 184, + sym_list_type = 185, + sym_dict_type = 186, + sym_literal_type = 187, + sym_keyword_argument = 188, + sym_list = 189, + sym_dictionary = 190, + sym_dict_expr = 191, + sym_pair = 192, + sym_list_comprehension = 193, + sym_dictionary_comprehension = 194, + sym__comprehension_clauses = 195, + sym__collection_elements = 196, + sym_for_in_clause = 197, + sym_if_clause = 198, + sym_conditional_expression = 199, + sym_string = 200, + sym_string_content = 201, + aux_sym_module_repeat1 = 202, + aux_sym_import_prefix_repeat1 = 203, + aux_sym_if_statement_repeat1 = 204, + aux_sym_quant_target_repeat1 = 205, + aux_sym_check_statement_repeat1 = 206, + aux_sym_argument_list_repeat1 = 207, + aux_sym_decorated_definition_repeat1 = 208, + aux_sym_dotted_name_repeat1 = 209, + aux_sym__parameters_repeat1 = 210, + aux_sym_selector_expression_repeat1 = 211, + aux_sym_long_expression_repeat1 = 212, + aux_sym_config_entries_repeat1 = 213, + aux_sym_comparison_operator_repeat1 = 214, + aux_sym_subscript_repeat1 = 215, + aux_sym_union_type_repeat1 = 216, + aux_sym_function_type_repeat1 = 217, + aux_sym_dictionary_repeat1 = 218, + aux_sym_dict_expr_repeat1 = 219, + aux_sym__comprehension_clauses_repeat1 = 220, + aux_sym__collection_elements_repeat1 = 221, + aux_sym_raw_string_repeat1 = 222, + aux_sym_string_content_repeat1 = 223, + anon_alias_sym_isnot = 224, + anon_alias_sym_notin = 225, + anon_alias_sym_null_assignment = 226, }; static const char * const ts_symbol_names[] = { @@ -414,7 +413,6 @@ static const char * const ts_symbol_names[] = { [sym_sequence_operation] = "sequence_operation", [sym_in_operation] = "in_operation", [sym_not_in_operation] = "not_in_operation", - [sym_concatenation] = "concatenation", [sym_comparison_operator] = "comparison_operator", [sym_assignment] = "assignment", [sym_augmented_assignment] = "augmented_assignment", @@ -645,7 +643,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_sequence_operation] = sym_sequence_operation, [sym_in_operation] = sym_in_operation, [sym_not_in_operation] = sym_not_in_operation, - [sym_concatenation] = sym_concatenation, [sym_comparison_operator] = sym_comparison_operator, [sym_assignment] = sym_assignment, [sym_augmented_assignment] = sym_augmented_assignment, @@ -1380,10 +1377,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_concatenation] = { - .visible = true, - .named = true, - }, [sym_comparison_operator] = { .visible = true, .named = true, @@ -2146,78 +2139,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 7, - [10] = 8, - [11] = 11, - [12] = 5, + [9] = 9, + [10] = 3, + [11] = 5, + [12] = 4, [13] = 5, - [14] = 7, - [15] = 7, - [16] = 5, - [17] = 5, - [18] = 7, + [14] = 5, + [15] = 6, + [16] = 4, + [17] = 4, + [18] = 4, [19] = 19, - [20] = 7, - [21] = 2, + [20] = 5, + [21] = 4, [22] = 5, - [23] = 6, - [24] = 19, - [25] = 7, + [23] = 5, + [24] = 7, + [25] = 8, [26] = 4, - [27] = 5, - [28] = 11, + [27] = 9, + [28] = 4, [29] = 5, - [30] = 7, - [31] = 7, - [32] = 5, - [33] = 3, + [30] = 2, + [31] = 4, + [32] = 19, + [33] = 5, [34] = 34, [35] = 35, [36] = 36, - [37] = 34, - [38] = 34, - [39] = 36, + [37] = 36, + [38] = 36, + [39] = 34, [40] = 40, - [41] = 41, + [41] = 40, [42] = 42, - [43] = 43, + [43] = 40, [44] = 44, - [45] = 45, + [45] = 44, [46] = 46, - [47] = 46, - [48] = 46, - [49] = 42, - [50] = 44, - [51] = 46, - [52] = 40, - [53] = 46, - [54] = 40, - [55] = 46, - [56] = 46, - [57] = 40, - [58] = 40, - [59] = 40, - [60] = 60, - [61] = 40, - [62] = 62, - [63] = 40, - [64] = 64, - [65] = 62, - [66] = 66, + [47] = 47, + [48] = 42, + [49] = 49, + [50] = 50, + [51] = 40, + [52] = 47, + [53] = 53, + [54] = 47, + [55] = 50, + [56] = 47, + [57] = 46, + [58] = 58, + [59] = 59, + [60] = 58, + [61] = 61, + [62] = 49, + [63] = 47, + [64] = 40, + [65] = 40, + [66] = 47, [67] = 40, - [68] = 46, - [69] = 46, - [70] = 45, - [71] = 41, - [72] = 66, - [73] = 60, - [74] = 43, - [75] = 64, + [68] = 61, + [69] = 40, + [70] = 47, + [71] = 47, + [72] = 53, + [73] = 47, + [74] = 40, + [75] = 59, [76] = 76, [77] = 76, - [78] = 76, + [78] = 78, [79] = 76, - [80] = 80, + [80] = 76, [81] = 76, [82] = 76, [83] = 76, @@ -2227,314 +2220,314 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [87] = 86, [88] = 88, [89] = 89, - [90] = 89, - [91] = 91, - [92] = 88, - [93] = 89, - [94] = 91, - [95] = 91, + [90] = 88, + [91] = 89, + [92] = 92, + [93] = 88, + [94] = 89, + [95] = 89, [96] = 89, [97] = 89, - [98] = 91, - [99] = 89, - [100] = 88, + [98] = 89, + [99] = 88, + [100] = 92, [101] = 88, - [102] = 89, - [103] = 91, - [104] = 88, - [105] = 88, - [106] = 91, - [107] = 88, - [108] = 88, - [109] = 91, - [110] = 89, - [111] = 111, + [102] = 88, + [103] = 92, + [104] = 92, + [105] = 92, + [106] = 92, + [107] = 92, + [108] = 92, + [109] = 88, + [110] = 110, + [111] = 88, [112] = 89, - [113] = 88, - [114] = 91, - [115] = 91, + [113] = 92, + [114] = 88, + [115] = 89, [116] = 116, [117] = 117, - [118] = 116, - [119] = 117, - [120] = 117, - [121] = 116, - [122] = 116, - [123] = 123, - [124] = 123, - [125] = 125, - [126] = 123, - [127] = 117, - [128] = 116, - [129] = 116, + [118] = 118, + [119] = 118, + [120] = 120, + [121] = 121, + [122] = 121, + [123] = 118, + [124] = 121, + [125] = 120, + [126] = 121, + [127] = 121, + [128] = 121, + [129] = 120, [130] = 117, - [131] = 117, - [132] = 123, - [133] = 123, - [134] = 123, - [135] = 123, - [136] = 123, - [137] = 116, - [138] = 117, - [139] = 116, - [140] = 116, + [131] = 121, + [132] = 118, + [133] = 120, + [134] = 121, + [135] = 118, + [136] = 118, + [137] = 120, + [138] = 118, + [139] = 118, + [140] = 120, [141] = 117, - [142] = 117, - [143] = 123, - [144] = 144, - [145] = 145, - [146] = 146, - [147] = 147, - [148] = 144, - [149] = 149, - [150] = 145, - [151] = 151, - [152] = 146, - [153] = 151, - [154] = 144, - [155] = 144, - [156] = 151, - [157] = 146, - [158] = 145, - [159] = 149, - [160] = 145, - [161] = 151, - [162] = 149, - [163] = 151, - [164] = 149, - [165] = 146, - [166] = 149, - [167] = 146, - [168] = 145, - [169] = 169, - [170] = 151, - [171] = 149, - [172] = 151, - [173] = 151, - [174] = 144, - [175] = 144, - [176] = 151, - [177] = 177, - [178] = 145, - [179] = 144, - [180] = 149, - [181] = 149, - [182] = 145, - [183] = 149, - [184] = 145, - [185] = 146, - [186] = 144, - [187] = 144, - [188] = 145, + [142] = 120, + [143] = 117, + [144] = 120, + [145] = 118, + [146] = 117, + [147] = 121, + [148] = 117, + [149] = 120, + [150] = 150, + [151] = 150, + [152] = 152, + [153] = 153, + [154] = 150, + [155] = 150, + [156] = 152, + [157] = 152, + [158] = 152, + [159] = 152, + [160] = 150, + [161] = 161, + [162] = 153, + [163] = 152, + [164] = 161, + [165] = 165, + [166] = 153, + [167] = 153, + [168] = 152, + [169] = 153, + [170] = 153, + [171] = 171, + [172] = 161, + [173] = 153, + [174] = 174, + [175] = 150, + [176] = 161, + [177] = 161, + [178] = 152, + [179] = 161, + [180] = 150, + [181] = 161, + [182] = 153, + [183] = 161, + [184] = 161, + [185] = 150, + [186] = 152, + [187] = 150, + [188] = 153, [189] = 189, [190] = 190, [191] = 191, - [192] = 190, - [193] = 193, - [194] = 194, - [195] = 189, + [192] = 191, + [193] = 191, + [194] = 191, + [195] = 195, [196] = 196, - [197] = 191, - [198] = 190, - [199] = 189, - [200] = 196, - [201] = 193, - [202] = 191, - [203] = 190, - [204] = 189, - [205] = 196, - [206] = 191, - [207] = 190, - [208] = 189, - [209] = 196, - [210] = 191, - [211] = 190, - [212] = 189, - [213] = 196, - [214] = 191, - [215] = 190, - [216] = 189, - [217] = 217, - [218] = 196, - [219] = 193, - [220] = 196, - [221] = 189, - [222] = 217, - [223] = 190, - [224] = 191, - [225] = 196, - [226] = 193, - [227] = 191, - [228] = 189, - [229] = 217, - [230] = 190, - [231] = 190, - [232] = 191, - [233] = 196, - [234] = 189, - [235] = 190, - [236] = 236, - [237] = 190, - [238] = 191, - [239] = 239, - [240] = 193, - [241] = 196, - [242] = 242, - [243] = 193, - [244] = 217, - [245] = 236, - [246] = 190, - [247] = 217, - [248] = 236, - [249] = 196, - [250] = 191, - [251] = 236, - [252] = 252, - [253] = 253, - [254] = 236, - [255] = 236, - [256] = 189, - [257] = 190, - [258] = 191, - [259] = 196, - [260] = 189, - [261] = 189, - [262] = 196, - [263] = 196, - [264] = 189, - [265] = 191, - [266] = 217, - [267] = 190, - [268] = 191, - [269] = 196, - [270] = 189, - [271] = 190, - [272] = 191, - [273] = 196, - [274] = 189, - [275] = 190, - [276] = 191, - [277] = 190, - [278] = 236, - [279] = 196, - [280] = 189, - [281] = 189, - [282] = 190, - [283] = 191, - [284] = 196, - [285] = 196, - [286] = 217, - [287] = 189, - [288] = 193, - [289] = 217, - [290] = 191, - [291] = 193, - [292] = 292, - [293] = 193, - [294] = 190, - [295] = 191, - [296] = 189, - [297] = 236, - [298] = 191, - [299] = 217, - [300] = 196, - [301] = 189, - [302] = 196, - [303] = 196, - [304] = 191, - [305] = 191, - [306] = 190, - [307] = 190, - [308] = 236, - [309] = 189, - [310] = 310, - [311] = 311, + [197] = 197, + [198] = 191, + [199] = 199, + [200] = 200, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 202, + [206] = 206, + [207] = 203, + [208] = 208, + [209] = 203, + [210] = 208, + [211] = 211, + [212] = 212, + [213] = 204, + [214] = 211, + [215] = 191, + [216] = 203, + [217] = 204, + [218] = 208, + [219] = 208, + [220] = 197, + [221] = 204, + [222] = 206, + [223] = 202, + [224] = 212, + [225] = 200, + [226] = 226, + [227] = 203, + [228] = 203, + [229] = 204, + [230] = 202, + [231] = 204, + [232] = 232, + [233] = 233, + [234] = 203, + [235] = 235, + [236] = 208, + [237] = 237, + [238] = 238, + [239] = 202, + [240] = 208, + [241] = 204, + [242] = 203, + [243] = 202, + [244] = 202, + [245] = 208, + [246] = 204, + [247] = 203, + [248] = 202, + [249] = 208, + [250] = 232, + [251] = 208, + [252] = 233, + [253] = 235, + [254] = 204, + [255] = 203, + [256] = 202, + [257] = 208, + [258] = 258, + [259] = 204, + [260] = 203, + [261] = 202, + [262] = 208, + [263] = 204, + [264] = 203, + [265] = 265, + [266] = 204, + [267] = 201, + [268] = 268, + [269] = 203, + [270] = 270, + [271] = 202, + [272] = 272, + [273] = 204, + [274] = 202, + [275] = 208, + [276] = 276, + [277] = 277, + [278] = 204, + [279] = 203, + [280] = 202, + [281] = 208, + [282] = 204, + [283] = 203, + [284] = 284, + [285] = 208, + [286] = 206, + [287] = 287, + [288] = 201, + [289] = 202, + [290] = 208, + [291] = 202, + [292] = 204, + [293] = 203, + [294] = 294, + [295] = 270, + [296] = 202, + [297] = 208, + [298] = 277, + [299] = 208, + [300] = 204, + [301] = 203, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 238, + [306] = 202, + [307] = 204, + [308] = 203, + [309] = 208, + [310] = 206, + [311] = 206, [312] = 312, - [313] = 313, + [313] = 203, [314] = 314, [315] = 315, - [316] = 311, - [317] = 317, - [318] = 310, - [319] = 319, + [316] = 204, + [317] = 202, + [318] = 268, + [319] = 197, [320] = 320, [321] = 321, - [322] = 322, - [323] = 323, + [322] = 208, + [323] = 272, [324] = 324, - [325] = 325, - [326] = 326, - [327] = 314, + [325] = 200, + [326] = 208, + [327] = 206, [328] = 328, - [329] = 329, - [330] = 330, + [329] = 206, + [330] = 204, [331] = 331, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, + [332] = 208, + [333] = 202, + [334] = 203, + [335] = 197, + [336] = 202, [337] = 337, - [338] = 338, - [339] = 329, - [340] = 337, - [341] = 324, - [342] = 322, - [343] = 343, - [344] = 334, - [345] = 326, - [346] = 346, - [347] = 325, - [348] = 323, - [349] = 320, - [350] = 317, - [351] = 319, - [352] = 352, - [353] = 353, + [338] = 203, + [339] = 339, + [340] = 201, + [341] = 341, + [342] = 197, + [343] = 200, + [344] = 344, + [345] = 200, + [346] = 197, + [347] = 196, + [348] = 200, + [349] = 195, + [350] = 206, + [351] = 312, + [352] = 202, + [353] = 287, [354] = 354, - [355] = 312, - [356] = 353, - [357] = 346, + [355] = 190, + [356] = 339, + [357] = 357, [358] = 358, - [359] = 338, - [360] = 336, - [361] = 335, - [362] = 333, - [363] = 332, - [364] = 331, - [365] = 330, - [366] = 352, - [367] = 313, - [368] = 368, - [369] = 328, - [370] = 354, - [371] = 315, - [372] = 372, - [373] = 321, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 358, - [378] = 378, - [379] = 368, - [380] = 372, - [381] = 375, - [382] = 382, - [383] = 376, - [384] = 382, - [385] = 378, - [386] = 378, - [387] = 378, - [388] = 388, - [389] = 378, - [390] = 378, - [391] = 374, - [392] = 343, + [359] = 344, + [360] = 200, + [361] = 200, + [362] = 202, + [363] = 197, + [364] = 364, + [365] = 358, + [366] = 304, + [367] = 206, + [368] = 199, + [369] = 303, + [370] = 302, + [371] = 294, + [372] = 284, + [373] = 276, + [374] = 203, + [375] = 314, + [376] = 197, + [377] = 331, + [378] = 265, + [379] = 200, + [380] = 258, + [381] = 197, + [382] = 328, + [383] = 208, + [384] = 324, + [385] = 315, + [386] = 237, + [387] = 189, + [388] = 321, + [389] = 320, + [390] = 204, + [391] = 204, + [392] = 392, [393] = 393, - [394] = 311, - [395] = 311, - [396] = 393, - [397] = 397, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 393, [398] = 398, [399] = 399, [400] = 400, @@ -2542,2890 +2535,2828 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [402] = 402, [403] = 403, [404] = 404, - [405] = 402, - [406] = 406, - [407] = 403, + [405] = 405, + [406] = 398, + [407] = 407, [408] = 408, - [409] = 409, - [410] = 410, - [411] = 403, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 403, - [416] = 403, - [417] = 417, - [418] = 403, + [409] = 396, + [410] = 394, + [411] = 411, + [412] = 411, + [413] = 399, + [414] = 392, + [415] = 401, + [416] = 416, + [417] = 400, + [418] = 416, [419] = 419, - [420] = 403, - [421] = 403, + [420] = 420, + [421] = 421, [422] = 422, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, - [427] = 403, - [428] = 403, + [423] = 419, + [424] = 407, + [425] = 420, + [426] = 405, + [427] = 408, + [428] = 404, [429] = 403, - [430] = 403, - [431] = 431, - [432] = 403, + [430] = 402, + [431] = 422, + [432] = 421, [433] = 433, [434] = 434, [435] = 435, - [436] = 398, + [436] = 436, [437] = 437, [438] = 438, [439] = 439, - [440] = 401, - [441] = 441, - [442] = 431, - [443] = 426, - [444] = 444, - [445] = 414, - [446] = 446, - [447] = 403, + [440] = 440, + [441] = 437, + [442] = 436, + [443] = 443, + [444] = 433, + [445] = 445, + [446] = 437, + [447] = 447, [448] = 448, [449] = 449, - [450] = 402, + [450] = 436, [451] = 451, - [452] = 446, - [453] = 441, - [454] = 437, - [455] = 433, - [456] = 406, - [457] = 404, - [458] = 434, + [452] = 452, + [453] = 437, + [454] = 436, + [455] = 455, + [456] = 456, + [457] = 437, + [458] = 458, [459] = 459, - [460] = 435, - [461] = 425, - [462] = 398, - [463] = 441, - [464] = 431, - [465] = 438, - [466] = 439, - [467] = 401, - [468] = 403, - [469] = 448, - [470] = 446, - [471] = 426, - [472] = 433, - [473] = 434, - [474] = 474, - [475] = 439, - [476] = 435, - [477] = 438, - [478] = 439, - [479] = 401, - [480] = 438, - [481] = 402, - [482] = 482, - [483] = 397, - [484] = 403, - [485] = 485, - [486] = 448, - [487] = 425, - [488] = 488, - [489] = 446, - [490] = 406, - [491] = 433, - [492] = 404, - [493] = 459, - [494] = 434, - [495] = 435, - [496] = 435, - [497] = 459, - [498] = 438, - [499] = 404, - [500] = 425, - [501] = 501, - [502] = 439, - [503] = 401, - [504] = 406, - [505] = 434, - [506] = 441, - [507] = 431, - [508] = 426, - [509] = 403, - [510] = 402, - [511] = 433, - [512] = 406, - [513] = 448, - [514] = 404, - [515] = 515, - [516] = 446, - [517] = 459, - [518] = 425, - [519] = 441, - [520] = 431, - [521] = 426, - [522] = 488, - [523] = 397, - [524] = 402, - [525] = 525, - [526] = 526, - [527] = 527, + [460] = 460, + [461] = 436, + [462] = 437, + [463] = 436, + [464] = 434, + [465] = 465, + [466] = 437, + [467] = 467, + [468] = 468, + [469] = 437, + [470] = 470, + [471] = 437, + [472] = 437, + [473] = 473, + [474] = 437, + [475] = 437, + [476] = 437, + [477] = 437, + [478] = 478, + [479] = 437, + [480] = 480, + [481] = 481, + [482] = 436, + [483] = 483, + [484] = 484, + [485] = 437, + [486] = 437, + [487] = 487, + [488] = 470, + [489] = 470, + [490] = 490, + [491] = 470, + [492] = 492, + [493] = 470, + [494] = 494, + [495] = 495, + [496] = 470, + [497] = 497, + [498] = 498, + [499] = 470, + [500] = 480, + [501] = 470, + [502] = 502, + [503] = 503, + [504] = 470, + [505] = 465, + [506] = 470, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 465, + [513] = 513, + [514] = 514, + [515] = 437, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 433, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 437, + [524] = 436, + [525] = 433, + [526] = 495, + [527] = 508, [528] = 528, - [529] = 525, - [530] = 526, - [531] = 527, - [532] = 528, - [533] = 406, - [534] = 404, - [535] = 459, - [536] = 425, - [537] = 441, - [538] = 431, - [539] = 426, - [540] = 402, - [541] = 400, - [542] = 399, - [543] = 433, + [529] = 529, + [530] = 513, + [531] = 495, + [532] = 470, + [533] = 508, + [534] = 513, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 536, + [539] = 492, + [540] = 490, + [541] = 436, + [542] = 470, + [543] = 437, [544] = 544, - [545] = 434, - [546] = 435, - [547] = 438, - [548] = 439, - [549] = 406, - [550] = 404, - [551] = 459, - [552] = 406, - [553] = 401, - [554] = 408, - [555] = 409, - [556] = 413, - [557] = 419, - [558] = 422, - [559] = 423, - [560] = 424, - [561] = 404, - [562] = 459, - [563] = 425, - [564] = 403, - [565] = 425, - [566] = 402, - [567] = 441, - [568] = 448, - [569] = 431, - [570] = 426, - [571] = 446, - [572] = 426, - [573] = 433, - [574] = 434, - [575] = 431, - [576] = 435, - [577] = 577, - [578] = 438, - [579] = 439, - [580] = 402, - [581] = 449, - [582] = 441, - [583] = 406, - [584] = 404, - [585] = 459, - [586] = 398, - [587] = 437, - [588] = 425, - [589] = 441, + [545] = 537, + [546] = 447, + [547] = 483, + [548] = 481, + [549] = 470, + [550] = 481, + [551] = 537, + [552] = 434, + [553] = 460, + [554] = 459, + [555] = 458, + [556] = 452, + [557] = 451, + [558] = 448, + [559] = 544, + [560] = 433, + [561] = 448, + [562] = 451, + [563] = 452, + [564] = 458, + [565] = 459, + [566] = 460, + [567] = 434, + [568] = 495, + [569] = 470, + [570] = 508, + [571] = 536, + [572] = 481, + [573] = 473, + [574] = 478, + [575] = 470, + [576] = 481, + [577] = 483, + [578] = 494, + [579] = 467, + [580] = 483, + [581] = 490, + [582] = 492, + [583] = 544, + [584] = 537, + [585] = 465, + [586] = 586, + [587] = 587, + [588] = 588, + [589] = 503, [590] = 590, - [591] = 437, - [592] = 398, - [593] = 431, - [594] = 426, - [595] = 425, - [596] = 424, - [597] = 401, - [598] = 423, - [599] = 422, - [600] = 419, - [601] = 413, - [602] = 409, - [603] = 408, - [604] = 459, - [605] = 404, - [606] = 406, - [607] = 402, - [608] = 399, - [609] = 441, - [610] = 400, + [591] = 509, + [592] = 433, + [593] = 593, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 498, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 465, + [604] = 465, + [605] = 465, + [606] = 536, + [607] = 607, + [608] = 465, + [609] = 609, + [610] = 610, [611] = 611, - [612] = 474, - [613] = 613, - [614] = 544, - [615] = 406, - [616] = 402, - [617] = 404, - [618] = 459, - [619] = 619, - [620] = 425, - [621] = 441, - [622] = 431, - [623] = 403, - [624] = 448, - [625] = 426, - [626] = 426, - [627] = 431, - [628] = 446, - [629] = 577, - [630] = 630, - [631] = 631, - [632] = 402, - [633] = 577, - [634] = 431, - [635] = 426, - [636] = 441, - [637] = 433, - [638] = 406, - [639] = 639, - [640] = 404, - [641] = 437, - [642] = 434, - [643] = 435, - [644] = 398, - [645] = 645, - [646] = 459, - [647] = 438, - [648] = 425, - [649] = 439, - [650] = 650, - [651] = 651, - [652] = 425, - [653] = 401, - [654] = 403, - [655] = 448, - [656] = 424, - [657] = 423, - [658] = 422, - [659] = 419, - [660] = 413, - [661] = 409, - [662] = 408, - [663] = 446, - [664] = 459, - [665] = 402, - [666] = 404, - [667] = 406, - [668] = 399, - [669] = 400, - [670] = 670, + [612] = 612, + [613] = 495, + [614] = 614, + [615] = 508, + [616] = 536, + [617] = 492, + [618] = 465, + [619] = 470, + [620] = 481, + [621] = 483, + [622] = 490, + [623] = 434, + [624] = 460, + [625] = 433, + [626] = 465, + [627] = 465, + [628] = 628, + [629] = 513, + [630] = 508, + [631] = 495, + [632] = 465, + [633] = 459, + [634] = 465, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 458, + [640] = 640, + [641] = 452, + [642] = 642, + [643] = 433, + [644] = 465, + [645] = 509, + [646] = 451, + [647] = 495, + [648] = 508, + [649] = 495, + [650] = 508, + [651] = 536, + [652] = 448, + [653] = 513, + [654] = 470, + [655] = 481, + [656] = 483, + [657] = 503, + [658] = 494, + [659] = 659, + [660] = 660, + [661] = 433, + [662] = 478, + [663] = 473, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 536, [671] = 671, - [672] = 672, - [673] = 673, - [674] = 459, - [675] = 397, - [676] = 676, - [677] = 441, - [678] = 431, - [679] = 426, - [680] = 402, - [681] = 402, - [682] = 485, - [683] = 397, - [684] = 488, - [685] = 426, - [686] = 431, - [687] = 577, - [688] = 515, - [689] = 441, - [690] = 459, - [691] = 437, - [692] = 398, - [693] = 403, - [694] = 694, - [695] = 425, - [696] = 424, - [697] = 423, - [698] = 422, - [699] = 419, - [700] = 413, - [701] = 409, - [702] = 408, - [703] = 459, - [704] = 404, - [705] = 406, - [706] = 399, - [707] = 400, - [708] = 406, - [709] = 613, - [710] = 404, - [711] = 459, - [712] = 402, - [713] = 619, - [714] = 425, - [715] = 577, - [716] = 716, - [717] = 441, - [718] = 431, - [719] = 426, - [720] = 431, - [721] = 577, - [722] = 426, - [723] = 402, - [724] = 724, - [725] = 630, - [726] = 631, - [727] = 441, - [728] = 431, - [729] = 426, - [730] = 730, - [731] = 459, - [732] = 459, - [733] = 590, - [734] = 639, - [735] = 437, - [736] = 400, - [737] = 399, - [738] = 398, - [739] = 645, - [740] = 459, - [741] = 650, - [742] = 651, - [743] = 425, - [744] = 406, - [745] = 404, - [746] = 459, - [747] = 424, - [748] = 423, - [749] = 408, - [750] = 409, - [751] = 413, - [752] = 419, - [753] = 422, - [754] = 423, - [755] = 424, - [756] = 422, - [757] = 419, - [758] = 425, - [759] = 413, - [760] = 409, - [761] = 408, - [762] = 459, - [763] = 459, - [764] = 404, - [765] = 402, - [766] = 406, - [767] = 399, - [768] = 400, - [769] = 769, - [770] = 670, - [771] = 426, - [772] = 431, - [773] = 671, - [774] = 577, - [775] = 672, - [776] = 398, - [777] = 437, - [778] = 673, - [779] = 676, - [780] = 410, - [781] = 459, - [782] = 402, - [783] = 459, - [784] = 426, - [785] = 431, - [786] = 577, - [787] = 441, - [788] = 459, - [789] = 441, - [790] = 459, - [791] = 437, - [792] = 398, - [793] = 397, - [794] = 425, - [795] = 488, - [796] = 424, - [797] = 441, - [798] = 423, - [799] = 425, - [800] = 459, - [801] = 404, - [802] = 406, - [803] = 422, - [804] = 419, - [805] = 413, - [806] = 409, - [807] = 408, - [808] = 433, - [809] = 434, - [810] = 435, - [811] = 438, - [812] = 459, - [813] = 404, - [814] = 577, - [815] = 431, - [816] = 426, - [817] = 406, - [818] = 399, - [819] = 439, - [820] = 400, - [821] = 425, - [822] = 822, - [823] = 441, - [824] = 401, - [825] = 423, - [826] = 448, - [827] = 402, - [828] = 424, - [829] = 829, - [830] = 459, - [831] = 422, - [832] = 426, - [833] = 431, - [834] = 577, - [835] = 397, - [836] = 402, - [837] = 488, - [838] = 419, - [839] = 441, - [840] = 413, - [841] = 409, - [842] = 408, - [843] = 403, - [844] = 448, - [845] = 437, - [846] = 398, - [847] = 446, - [848] = 425, - [849] = 397, - [850] = 397, - [851] = 397, - [852] = 397, - [853] = 397, - [854] = 397, - [855] = 412, - [856] = 397, - [857] = 397, - [858] = 397, - [859] = 397, - [860] = 488, - [861] = 397, - [862] = 488, - [863] = 397, - [864] = 459, - [865] = 424, - [866] = 423, - [867] = 867, - [868] = 422, - [869] = 419, - [870] = 413, - [871] = 409, - [872] = 408, - [873] = 404, - [874] = 459, - [875] = 404, - [876] = 406, - [877] = 501, - [878] = 399, - [879] = 400, - [880] = 406, - [881] = 515, - [882] = 417, - [883] = 400, - [884] = 399, - [885] = 488, - [886] = 886, - [887] = 488, - [888] = 397, - [889] = 406, - [890] = 404, - [891] = 459, - [892] = 402, - [893] = 399, - [894] = 408, - [895] = 409, - [896] = 413, - [897] = 419, - [898] = 422, - [899] = 423, - [900] = 424, - [901] = 400, - [902] = 426, - [903] = 425, - [904] = 431, - [905] = 577, - [906] = 397, - [907] = 488, - [908] = 441, - [909] = 397, - [910] = 437, - [911] = 488, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 916, - [918] = 918, - [919] = 916, - [920] = 916, - [921] = 912, - [922] = 916, - [923] = 923, - [924] = 923, - [925] = 925, - [926] = 926, - [927] = 923, - [928] = 916, - [929] = 929, - [930] = 923, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 913, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 966, - [967] = 967, - [968] = 968, - [969] = 969, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 971, - [974] = 970, - [975] = 969, - [976] = 968, - [977] = 972, - [978] = 967, - [979] = 963, - [980] = 966, - [981] = 923, - [982] = 962, - [983] = 965, - [984] = 964, - [985] = 959, - [986] = 961, - [987] = 960, - [988] = 953, - [989] = 952, - [990] = 950, - [991] = 944, - [992] = 929, - [993] = 926, - [994] = 925, - [995] = 958, - [996] = 918, - [997] = 915, - [998] = 957, - [999] = 914, - [1000] = 956, - [1001] = 955, - [1002] = 954, - [1003] = 951, - [1004] = 949, - [1005] = 948, - [1006] = 947, - [1007] = 946, - [1008] = 945, - [1009] = 923, - [1010] = 943, - [1011] = 942, - [1012] = 940, - [1013] = 939, - [1014] = 938, - [1015] = 937, - [1016] = 936, - [1017] = 935, - [1018] = 934, - [1019] = 933, - [1020] = 931, - [1021] = 932, - [1022] = 146, - [1023] = 146, - [1024] = 146, - [1025] = 146, - [1026] = 353, - [1027] = 335, - [1028] = 326, - [1029] = 334, - [1030] = 337, - [1031] = 334, - [1032] = 329, - [1033] = 324, - [1034] = 322, - [1035] = 358, - [1036] = 319, - [1037] = 310, - [1038] = 317, - [1039] = 368, - [1040] = 372, - [1041] = 314, - [1042] = 312, - [1043] = 336, - [1044] = 311, - [1045] = 346, - [1046] = 325, - [1047] = 338, - [1048] = 375, - [1049] = 333, - [1050] = 332, - [1051] = 331, - [1052] = 330, - [1053] = 352, - [1054] = 343, - [1055] = 313, - [1056] = 328, - [1057] = 354, - [1058] = 393, - [1059] = 315, - [1060] = 321, - [1061] = 320, - [1062] = 311, - [1063] = 376, - [1064] = 382, - [1065] = 378, - [1066] = 378, - [1067] = 378, - [1068] = 323, - [1069] = 671, - [1070] = 650, - [1071] = 528, - [1072] = 527, - [1073] = 673, - [1074] = 526, - [1075] = 544, - [1076] = 590, - [1077] = 676, - [1078] = 670, - [1079] = 613, - [1080] = 672, - [1081] = 619, - [1082] = 651, - [1083] = 525, - [1084] = 630, - [1085] = 645, - [1086] = 645, - [1087] = 631, - [1088] = 639, - [1089] = 923, - [1090] = 544, - [1091] = 953, - [1092] = 923, - [1093] = 960, - [1094] = 961, - [1095] = 528, - [1096] = 964, - [1097] = 965, - [1098] = 966, - [1099] = 972, - [1100] = 527, - [1101] = 971, - [1102] = 970, - [1103] = 969, - [1104] = 968, - [1105] = 967, - [1106] = 963, - [1107] = 962, - [1108] = 526, - [1109] = 926, - [1110] = 915, - [1111] = 959, - [1112] = 958, - [1113] = 957, - [1114] = 525, - [1115] = 956, - [1116] = 955, - [1117] = 954, - [1118] = 914, - [1119] = 525, - [1120] = 950, - [1121] = 951, - [1122] = 949, - [1123] = 948, - [1124] = 947, - [1125] = 946, - [1126] = 526, - [1127] = 945, - [1128] = 944, - [1129] = 527, - [1130] = 528, - [1131] = 943, - [1132] = 942, - [1133] = 913, - [1134] = 925, - [1135] = 940, - [1136] = 939, - [1137] = 938, - [1138] = 937, - [1139] = 936, - [1140] = 935, - [1141] = 934, - [1142] = 933, - [1143] = 923, - [1144] = 544, - [1145] = 932, - [1146] = 931, - [1147] = 952, - [1148] = 912, - [1149] = 918, - [1150] = 916, - [1151] = 916, - [1152] = 916, - [1153] = 929, - [1154] = 146, - [1155] = 146, - [1156] = 146, - [1157] = 393, - [1158] = 343, - [1159] = 375, - [1160] = 372, - [1161] = 368, - [1162] = 358, - [1163] = 358, - [1164] = 393, - [1165] = 368, - [1166] = 372, - [1167] = 375, - [1168] = 343, - [1169] = 314, - [1170] = 1170, - [1171] = 146, - [1172] = 324, - [1173] = 337, - [1174] = 1170, - [1175] = 1175, - [1176] = 310, - [1177] = 146, - [1178] = 319, - [1179] = 146, - [1180] = 1175, - [1181] = 323, - [1182] = 526, - [1183] = 311, - [1184] = 1184, - [1185] = 146, - [1186] = 525, - [1187] = 1187, - [1188] = 527, - [1189] = 528, - [1190] = 375, - [1191] = 372, - [1192] = 368, - [1193] = 358, - [1194] = 328, - [1195] = 354, - [1196] = 1196, - [1197] = 1187, - [1198] = 378, - [1199] = 378, - [1200] = 324, - [1201] = 146, - [1202] = 321, - [1203] = 346, - [1204] = 146, - [1205] = 319, - [1206] = 310, - [1207] = 544, - [1208] = 314, - [1209] = 335, - [1210] = 1210, - [1211] = 323, - [1212] = 1212, - [1213] = 376, - [1214] = 330, - [1215] = 331, - [1216] = 332, - [1217] = 1217, - [1218] = 336, - [1219] = 333, - [1220] = 337, - [1221] = 1196, - [1222] = 343, - [1223] = 1217, - [1224] = 1210, - [1225] = 378, - [1226] = 338, - [1227] = 382, - [1228] = 320, - [1229] = 311, - [1230] = 1184, - [1231] = 393, - [1232] = 613, - [1233] = 525, - [1234] = 912, - [1235] = 965, - [1236] = 146, - [1237] = 925, - [1238] = 673, - [1239] = 966, - [1240] = 926, - [1241] = 1212, - [1242] = 972, - [1243] = 352, - [1244] = 670, - [1245] = 937, - [1246] = 938, - [1247] = 313, - [1248] = 936, - [1249] = 935, - [1250] = 676, - [1251] = 934, - [1252] = 970, - [1253] = 946, - [1254] = 969, - [1255] = 968, - [1256] = 967, - [1257] = 672, - [1258] = 963, - [1259] = 962, - [1260] = 939, - [1261] = 923, - [1262] = 1262, - [1263] = 315, - [1264] = 918, - [1265] = 959, - [1266] = 671, - [1267] = 933, - [1268] = 958, - [1269] = 957, - [1270] = 956, - [1271] = 955, - [1272] = 954, - [1273] = 329, - [1274] = 971, - [1275] = 951, - [1276] = 940, - [1277] = 949, - [1278] = 948, - [1279] = 382, - [1280] = 947, - [1281] = 631, - [1282] = 146, - [1283] = 1262, - [1284] = 376, - [1285] = 932, - [1286] = 630, - [1287] = 915, - [1288] = 931, - [1289] = 914, - [1290] = 916, - [1291] = 916, - [1292] = 353, - [1293] = 964, - [1294] = 526, - [1295] = 945, - [1296] = 527, - [1297] = 528, - [1298] = 929, - [1299] = 944, - [1300] = 916, - [1301] = 651, - [1302] = 325, - [1303] = 1303, - [1304] = 312, - [1305] = 950, - [1306] = 322, - [1307] = 146, - [1308] = 619, - [1309] = 913, - [1310] = 146, - [1311] = 942, - [1312] = 544, - [1313] = 943, - [1314] = 146, - [1315] = 961, - [1316] = 317, - [1317] = 650, - [1318] = 590, - [1319] = 952, - [1320] = 953, - [1321] = 960, - [1322] = 334, - [1323] = 326, - [1324] = 935, - [1325] = 146, - [1326] = 949, - [1327] = 923, - [1328] = 947, - [1329] = 918, - [1330] = 946, - [1331] = 945, - [1332] = 933, - [1333] = 965, - [1334] = 951, - [1335] = 619, - [1336] = 676, - [1337] = 613, - [1338] = 146, - [1339] = 943, - [1340] = 942, - [1341] = 915, - [1342] = 672, - [1343] = 378, - [1344] = 913, - [1345] = 954, - [1346] = 645, - [1347] = 940, - [1348] = 955, - [1349] = 964, - [1350] = 914, - [1351] = 343, - [1352] = 956, - [1353] = 957, - [1354] = 958, - [1355] = 939, - [1356] = 959, - [1357] = 393, - [1358] = 639, - [1359] = 650, - [1360] = 938, - [1361] = 961, - [1362] = 146, - [1363] = 925, - [1364] = 673, - [1365] = 916, - [1366] = 926, - [1367] = 937, - [1368] = 320, - [1369] = 953, - [1370] = 936, - [1371] = 923, - [1372] = 375, - [1373] = 948, - [1374] = 328, - [1375] = 972, - [1376] = 146, - [1377] = 952, - [1378] = 950, - [1379] = 651, - [1380] = 912, - [1381] = 932, - [1382] = 962, - [1383] = 931, - [1384] = 944, - [1385] = 966, - [1386] = 923, - [1387] = 321, - [1388] = 963, - [1389] = 378, - [1390] = 146, - [1391] = 630, - [1392] = 631, - [1393] = 311, - [1394] = 960, - [1395] = 354, - [1396] = 967, - [1397] = 968, - [1398] = 934, - [1399] = 372, - [1400] = 146, - [1401] = 671, - [1402] = 330, - [1403] = 331, - [1404] = 332, - [1405] = 333, - [1406] = 335, - [1407] = 336, - [1408] = 969, - [1409] = 970, - [1410] = 670, - [1411] = 338, - [1412] = 311, - [1413] = 971, - [1414] = 358, - [1415] = 378, - [1416] = 929, - [1417] = 368, - [1418] = 346, - [1419] = 916, - [1420] = 916, - [1421] = 146, - [1422] = 353, - [1423] = 315, - [1424] = 544, - [1425] = 1425, - [1426] = 1426, - [1427] = 313, - [1428] = 352, - [1429] = 329, - [1430] = 313, - [1431] = 1431, - [1432] = 311, - [1433] = 1433, - [1434] = 393, - [1435] = 343, - [1436] = 322, - [1437] = 376, - [1438] = 315, - [1439] = 346, - [1440] = 326, - [1441] = 325, - [1442] = 382, - [1443] = 334, - [1444] = 317, - [1445] = 1433, - [1446] = 312, - [1447] = 378, - [1448] = 378, - [1449] = 337, - [1450] = 1426, - [1451] = 338, - [1452] = 326, - [1453] = 590, - [1454] = 1431, - [1455] = 336, - [1456] = 335, - [1457] = 333, - [1458] = 332, - [1459] = 331, - [1460] = 330, - [1461] = 1425, - [1462] = 311, - [1463] = 328, - [1464] = 354, - [1465] = 324, - [1466] = 1466, - [1467] = 321, - [1468] = 319, - [1469] = 310, - [1470] = 378, - [1471] = 375, - [1472] = 1472, - [1473] = 323, - [1474] = 314, - [1475] = 525, - [1476] = 526, - [1477] = 527, - [1478] = 372, - [1479] = 528, - [1480] = 1472, - [1481] = 146, - [1482] = 353, - [1483] = 322, - [1484] = 368, - [1485] = 358, - [1486] = 320, - [1487] = 329, - [1488] = 1466, - [1489] = 312, - [1490] = 325, - [1491] = 352, - [1492] = 317, - [1493] = 320, - [1494] = 354, - [1495] = 146, - [1496] = 320, - [1497] = 352, - [1498] = 338, - [1499] = 336, - [1500] = 368, - [1501] = 335, - [1502] = 333, - [1503] = 332, - [1504] = 331, - [1505] = 330, - [1506] = 323, - [1507] = 372, - [1508] = 319, - [1509] = 343, - [1510] = 310, - [1511] = 324, - [1512] = 358, - [1513] = 326, - [1514] = 378, - [1515] = 672, - [1516] = 376, - [1517] = 671, - [1518] = 337, - [1519] = 328, - [1520] = 354, - [1521] = 670, - [1522] = 619, - [1523] = 314, - [1524] = 326, - [1525] = 393, - [1526] = 375, - [1527] = 353, - [1528] = 338, - [1529] = 382, - [1530] = 613, - [1531] = 346, - [1532] = 321, - [1533] = 336, - [1534] = 673, - [1535] = 544, - [1536] = 335, - [1537] = 311, - [1538] = 311, - [1539] = 333, - [1540] = 645, - [1541] = 332, - [1542] = 325, - [1543] = 313, - [1544] = 311, - [1545] = 331, - [1546] = 650, - [1547] = 311, - [1548] = 375, - [1549] = 146, - [1550] = 330, - [1551] = 321, - [1552] = 378, - [1553] = 378, - [1554] = 378, - [1555] = 639, - [1556] = 311, - [1557] = 923, - [1558] = 372, - [1559] = 590, - [1560] = 378, - [1561] = 378, - [1562] = 323, - [1563] = 630, - [1564] = 631, - [1565] = 923, - [1566] = 368, - [1567] = 353, - [1568] = 378, - [1569] = 325, - [1570] = 393, - [1571] = 320, - [1572] = 358, - [1573] = 346, - [1574] = 343, - [1575] = 382, - [1576] = 326, - [1577] = 525, - [1578] = 526, - [1579] = 676, - [1580] = 527, - [1581] = 528, - [1582] = 376, - [1583] = 334, - [1584] = 312, - [1585] = 378, - [1586] = 338, - [1587] = 336, - [1588] = 312, - [1589] = 335, - [1590] = 333, - [1591] = 314, - [1592] = 332, - [1593] = 331, - [1594] = 330, - [1595] = 358, - [1596] = 312, - [1597] = 313, - [1598] = 639, - [1599] = 393, - [1600] = 334, - [1601] = 378, - [1602] = 368, - [1603] = 317, - [1604] = 311, - [1605] = 343, - [1606] = 317, - [1607] = 329, - [1608] = 328, - [1609] = 354, - [1610] = 322, - [1611] = 375, - [1612] = 317, - [1613] = 337, - [1614] = 346, - [1615] = 324, - [1616] = 329, - [1617] = 352, - [1618] = 310, - [1619] = 329, - [1620] = 313, - [1621] = 325, - [1622] = 328, - [1623] = 319, - [1624] = 315, - [1625] = 321, - [1626] = 315, - [1627] = 322, - [1628] = 322, - [1629] = 372, - [1630] = 651, - [1631] = 613, - [1632] = 526, - [1633] = 951, - [1634] = 947, - [1635] = 1635, - [1636] = 619, - [1637] = 948, - [1638] = 915, - [1639] = 949, - [1640] = 619, - [1641] = 954, - [1642] = 311, - [1643] = 353, - [1644] = 955, - [1645] = 590, - [1646] = 944, - [1647] = 956, - [1648] = 957, - [1649] = 958, - [1650] = 945, - [1651] = 528, + [672] = 544, + [673] = 433, + [674] = 674, + [675] = 447, + [676] = 465, + [677] = 495, + [678] = 508, + [679] = 511, + [680] = 665, + [681] = 480, + [682] = 682, + [683] = 607, + [684] = 509, + [685] = 536, + [686] = 503, + [687] = 483, + [688] = 494, + [689] = 470, + [690] = 478, + [691] = 481, + [692] = 483, + [693] = 537, + [694] = 544, + [695] = 473, + [696] = 529, + [697] = 697, + [698] = 447, + [699] = 528, + [700] = 465, + [701] = 511, + [702] = 435, + [703] = 438, + [704] = 439, + [705] = 440, + [706] = 443, + [707] = 433, + [708] = 480, + [709] = 445, + [710] = 448, + [711] = 451, + [712] = 452, + [713] = 458, + [714] = 459, + [715] = 495, + [716] = 508, + [717] = 536, + [718] = 460, + [719] = 509, + [720] = 470, + [721] = 481, + [722] = 483, + [723] = 470, + [724] = 481, + [725] = 483, + [726] = 487, + [727] = 490, + [728] = 492, + [729] = 503, + [730] = 433, + [731] = 502, + [732] = 492, + [733] = 490, + [734] = 516, + [735] = 495, + [736] = 508, + [737] = 536, + [738] = 494, + [739] = 507, + [740] = 483, + [741] = 481, + [742] = 470, + [743] = 514, + [744] = 470, + [745] = 434, + [746] = 460, + [747] = 459, + [748] = 458, + [749] = 452, + [750] = 451, + [751] = 448, + [752] = 481, + [753] = 483, + [754] = 478, + [755] = 516, + [756] = 517, + [757] = 518, + [758] = 473, + [759] = 433, + [760] = 520, + [761] = 516, + [762] = 495, + [763] = 508, + [764] = 447, + [765] = 536, + [766] = 536, + [767] = 521, + [768] = 470, + [769] = 481, + [770] = 483, + [771] = 544, + [772] = 537, + [773] = 674, + [774] = 536, + [775] = 669, + [776] = 668, + [777] = 667, + [778] = 433, + [779] = 666, + [780] = 465, + [781] = 495, + [782] = 508, + [783] = 511, + [784] = 536, + [785] = 492, + [786] = 470, + [787] = 481, + [788] = 483, + [789] = 490, + [790] = 660, + [791] = 659, + [792] = 536, + [793] = 513, + [794] = 508, + [795] = 495, + [796] = 495, + [797] = 508, + [798] = 536, + [799] = 433, + [800] = 480, + [801] = 509, + [802] = 642, + [803] = 640, + [804] = 470, + [805] = 481, + [806] = 483, + [807] = 638, + [808] = 513, + [809] = 508, + [810] = 495, + [811] = 637, + [812] = 636, + [813] = 635, + [814] = 503, + [815] = 494, + [816] = 495, + [817] = 508, + [818] = 513, + [819] = 628, + [820] = 478, + [821] = 436, + [822] = 433, + [823] = 473, + [824] = 433, + [825] = 614, + [826] = 612, + [827] = 483, + [828] = 455, + [829] = 456, + [830] = 433, + [831] = 481, + [832] = 536, + [833] = 508, + [834] = 495, + [835] = 495, + [836] = 611, + [837] = 508, + [838] = 433, + [839] = 610, + [840] = 536, + [841] = 470, + [842] = 609, + [843] = 535, + [844] = 537, + [845] = 697, + [846] = 544, + [847] = 536, + [848] = 848, + [849] = 437, + [850] = 480, + [851] = 483, + [852] = 511, + [853] = 465, + [854] = 854, + [855] = 447, + [856] = 856, + [857] = 447, + [858] = 858, + [859] = 602, + [860] = 473, + [861] = 478, + [862] = 601, + [863] = 470, + [864] = 481, + [865] = 854, + [866] = 537, + [867] = 483, + [868] = 494, + [869] = 503, + [870] = 535, + [871] = 544, + [872] = 600, + [873] = 599, + [874] = 436, + [875] = 437, + [876] = 481, + [877] = 492, + [878] = 490, + [879] = 509, + [880] = 597, + [881] = 516, + [882] = 470, + [883] = 483, + [884] = 481, + [885] = 470, + [886] = 596, + [887] = 595, + [888] = 434, + [889] = 460, + [890] = 459, + [891] = 458, + [892] = 452, + [893] = 451, + [894] = 448, + [895] = 594, + [896] = 593, + [897] = 590, + [898] = 516, + [899] = 588, + [900] = 587, + [901] = 586, + [902] = 480, + [903] = 448, + [904] = 451, + [905] = 511, + [906] = 452, + [907] = 856, + [908] = 458, + [909] = 465, + [910] = 459, + [911] = 544, + [912] = 537, + [913] = 460, + [914] = 434, + [915] = 470, + [916] = 481, + [917] = 483, + [918] = 492, + [919] = 490, + [920] = 483, + [921] = 490, + [922] = 492, + [923] = 481, + [924] = 470, + [925] = 434, + [926] = 460, + [927] = 459, + [928] = 458, + [929] = 452, + [930] = 451, + [931] = 448, + [932] = 536, + [933] = 434, + [934] = 544, + [935] = 537, + [936] = 460, + [937] = 459, + [938] = 458, + [939] = 433, + [940] = 452, + [941] = 941, + [942] = 448, + [943] = 511, + [944] = 447, + [945] = 465, + [946] = 511, + [947] = 513, + [948] = 508, + [949] = 495, + [950] = 495, + [951] = 508, + [952] = 513, + [953] = 858, + [954] = 473, + [955] = 480, + [956] = 451, + [957] = 536, + [958] = 536, + [959] = 509, + [960] = 537, + [961] = 544, + [962] = 503, + [963] = 478, + [964] = 494, + [965] = 478, + [966] = 448, + [967] = 451, + [968] = 433, + [969] = 452, + [970] = 458, + [971] = 459, + [972] = 460, + [973] = 494, + [974] = 434, + [975] = 513, + [976] = 503, + [977] = 470, + [978] = 509, + [979] = 481, + [980] = 480, + [981] = 483, + [982] = 508, + [983] = 495, + [984] = 490, + [985] = 492, + [986] = 511, + [987] = 473, + [988] = 447, + [989] = 465, + [990] = 465, + [991] = 991, + [992] = 433, + [993] = 993, + [994] = 117, + [995] = 117, + [996] = 117, + [997] = 117, + [998] = 320, + [999] = 201, + [1000] = 238, + [1001] = 237, + [1002] = 312, + [1003] = 233, + [1004] = 235, + [1005] = 344, + [1006] = 268, + [1007] = 272, + [1008] = 276, + [1009] = 284, + [1010] = 191, + [1011] = 191, + [1012] = 294, + [1013] = 191, + [1014] = 302, + [1015] = 303, + [1016] = 314, + [1017] = 232, + [1018] = 358, + [1019] = 201, + [1020] = 339, + [1021] = 199, + [1022] = 315, + [1023] = 277, + [1024] = 331, + [1025] = 212, + [1026] = 258, + [1027] = 211, + [1028] = 344, + [1029] = 304, + [1030] = 190, + [1031] = 287, + [1032] = 321, + [1033] = 189, + [1034] = 270, + [1035] = 195, + [1036] = 324, + [1037] = 196, + [1038] = 328, + [1039] = 265, + [1040] = 404, + [1041] = 403, + [1042] = 419, + [1043] = 402, + [1044] = 405, + [1045] = 407, + [1046] = 411, + [1047] = 420, + [1048] = 421, + [1049] = 392, + [1050] = 394, + [1051] = 396, + [1052] = 422, + [1053] = 399, + [1054] = 416, + [1055] = 400, + [1056] = 393, + [1057] = 401, + [1058] = 399, + [1059] = 398, + [1060] = 421, + [1061] = 419, + [1062] = 666, + [1063] = 416, + [1064] = 586, + [1065] = 587, + [1066] = 667, + [1067] = 588, + [1068] = 668, + [1069] = 516, + [1070] = 590, + [1071] = 669, + [1072] = 516, + [1073] = 593, + [1074] = 416, + [1075] = 594, + [1076] = 595, + [1077] = 674, + [1078] = 596, + [1079] = 665, + [1080] = 607, + [1081] = 597, + [1082] = 420, + [1083] = 421, + [1084] = 529, + [1085] = 528, + [1086] = 422, + [1087] = 599, + [1088] = 422, + [1089] = 600, + [1090] = 435, + [1091] = 438, + [1092] = 439, + [1093] = 440, + [1094] = 443, + [1095] = 445, + [1096] = 601, + [1097] = 420, + [1098] = 419, + [1099] = 602, + [1100] = 487, + [1101] = 660, + [1102] = 609, + [1103] = 659, + [1104] = 610, + [1105] = 642, + [1106] = 611, + [1107] = 640, + [1108] = 638, + [1109] = 502, + [1110] = 637, + [1111] = 507, + [1112] = 514, + [1113] = 636, + [1114] = 516, + [1115] = 517, + [1116] = 612, + [1117] = 518, + [1118] = 635, + [1119] = 614, + [1120] = 520, + [1121] = 521, + [1122] = 628, + [1123] = 117, + [1124] = 117, + [1125] = 117, + [1126] = 232, + [1127] = 235, + [1128] = 277, + [1129] = 270, + [1130] = 233, + [1131] = 232, + [1132] = 270, + [1133] = 277, + [1134] = 235, + [1135] = 233, + [1136] = 1136, + [1137] = 1137, + [1138] = 1136, + [1139] = 195, + [1140] = 328, + [1141] = 1137, + [1142] = 315, + [1143] = 117, + [1144] = 189, + [1145] = 321, + [1146] = 117, + [1147] = 358, + [1148] = 117, + [1149] = 235, + [1150] = 201, + [1151] = 191, + [1152] = 328, + [1153] = 1153, + [1154] = 1154, + [1155] = 211, + [1156] = 1156, + [1157] = 258, + [1158] = 265, + [1159] = 1154, + [1160] = 1160, + [1161] = 233, + [1162] = 422, + [1163] = 190, + [1164] = 212, + [1165] = 232, + [1166] = 1166, + [1167] = 191, + [1168] = 277, + [1169] = 421, + [1170] = 1160, + [1171] = 270, + [1172] = 196, + [1173] = 276, + [1174] = 1174, + [1175] = 284, + [1176] = 294, + [1177] = 302, + [1178] = 303, + [1179] = 199, + [1180] = 117, + [1181] = 304, + [1182] = 358, + [1183] = 191, + [1184] = 1153, + [1185] = 195, + [1186] = 420, + [1187] = 419, + [1188] = 237, + [1189] = 189, + [1190] = 117, + [1191] = 321, + [1192] = 117, + [1193] = 315, + [1194] = 416, + [1195] = 201, + [1196] = 1166, + [1197] = 1174, + [1198] = 396, + [1199] = 596, + [1200] = 400, + [1201] = 394, + [1202] = 117, + [1203] = 401, + [1204] = 392, + [1205] = 1205, + [1206] = 443, + [1207] = 324, + [1208] = 411, + [1209] = 440, + [1210] = 439, + [1211] = 445, + [1212] = 438, + [1213] = 435, + [1214] = 117, + [1215] = 528, + [1216] = 529, + [1217] = 320, + [1218] = 211, + [1219] = 331, + [1220] = 314, + [1221] = 607, + [1222] = 272, + [1223] = 665, + [1224] = 674, + [1225] = 669, + [1226] = 268, + [1227] = 668, + [1228] = 117, + [1229] = 516, + [1230] = 667, + [1231] = 1231, + [1232] = 666, + [1233] = 212, + [1234] = 660, + [1235] = 659, + [1236] = 487, + [1237] = 642, + [1238] = 521, + [1239] = 520, + [1240] = 238, + [1241] = 640, + [1242] = 638, + [1243] = 637, + [1244] = 636, + [1245] = 635, + [1246] = 628, + [1247] = 614, + [1248] = 612, + [1249] = 611, + [1250] = 610, + [1251] = 1205, + [1252] = 609, + [1253] = 518, + [1254] = 393, + [1255] = 602, + [1256] = 601, + [1257] = 600, + [1258] = 517, + [1259] = 419, + [1260] = 420, + [1261] = 421, + [1262] = 344, + [1263] = 117, + [1264] = 599, + [1265] = 597, + [1266] = 595, + [1267] = 422, + [1268] = 405, + [1269] = 586, + [1270] = 587, + [1271] = 1156, + [1272] = 312, + [1273] = 287, + [1274] = 407, + [1275] = 117, + [1276] = 416, + [1277] = 588, + [1278] = 339, + [1279] = 590, + [1280] = 593, + [1281] = 502, + [1282] = 514, + [1283] = 402, + [1284] = 507, + [1285] = 403, + [1286] = 594, + [1287] = 404, + [1288] = 398, + [1289] = 602, + [1290] = 516, + [1291] = 642, + [1292] = 445, + [1293] = 640, + [1294] = 638, + [1295] = 637, + [1296] = 401, + [1297] = 443, + [1298] = 440, + [1299] = 660, + [1300] = 439, + [1301] = 438, + [1302] = 435, + [1303] = 400, + [1304] = 636, + [1305] = 635, + [1306] = 117, + [1307] = 528, + [1308] = 520, + [1309] = 399, + [1310] = 411, + [1311] = 117, + [1312] = 516, + [1313] = 628, + [1314] = 190, + [1315] = 614, + [1316] = 612, + [1317] = 529, + [1318] = 611, + [1319] = 610, + [1320] = 609, + [1321] = 521, + [1322] = 392, + [1323] = 518, + [1324] = 659, + [1325] = 601, + [1326] = 600, + [1327] = 599, + [1328] = 117, + [1329] = 117, + [1330] = 191, + [1331] = 597, + [1332] = 394, + [1333] = 396, + [1334] = 191, + [1335] = 596, + [1336] = 191, + [1337] = 595, + [1338] = 232, + [1339] = 233, + [1340] = 487, + [1341] = 607, + [1342] = 304, + [1343] = 199, + [1344] = 117, + [1345] = 117, + [1346] = 517, + [1347] = 402, + [1348] = 403, + [1349] = 665, + [1350] = 277, + [1351] = 404, + [1352] = 303, + [1353] = 674, + [1354] = 302, + [1355] = 294, + [1356] = 237, + [1357] = 502, + [1358] = 196, + [1359] = 405, + [1360] = 201, + [1361] = 669, + [1362] = 284, + [1363] = 276, + [1364] = 516, + [1365] = 668, + [1366] = 507, + [1367] = 667, + [1368] = 666, + [1369] = 594, + [1370] = 514, + [1371] = 270, + [1372] = 586, + [1373] = 593, + [1374] = 587, + [1375] = 258, + [1376] = 265, + [1377] = 588, + [1378] = 201, + [1379] = 235, + [1380] = 590, + [1381] = 407, + [1382] = 117, + [1383] = 1383, + [1384] = 339, + [1385] = 1385, + [1386] = 312, + [1387] = 287, + [1388] = 1388, + [1389] = 1389, + [1390] = 284, + [1391] = 294, + [1392] = 314, + [1393] = 303, + [1394] = 199, + [1395] = 304, + [1396] = 358, + [1397] = 324, + [1398] = 1398, + [1399] = 312, + [1400] = 238, + [1401] = 287, + [1402] = 268, + [1403] = 393, + [1404] = 315, + [1405] = 321, + [1406] = 272, + [1407] = 117, + [1408] = 191, + [1409] = 196, + [1410] = 324, + [1411] = 189, + [1412] = 201, + [1413] = 1383, + [1414] = 238, + [1415] = 212, + [1416] = 1416, + [1417] = 276, + [1418] = 416, + [1419] = 302, + [1420] = 235, + [1421] = 1398, + [1422] = 233, + [1423] = 320, + [1424] = 191, + [1425] = 232, + [1426] = 419, + [1427] = 331, + [1428] = 211, + [1429] = 420, + [1430] = 191, + [1431] = 344, + [1432] = 1416, + [1433] = 1388, + [1434] = 320, + [1435] = 421, + [1436] = 268, + [1437] = 1385, + [1438] = 272, + [1439] = 314, + [1440] = 422, + [1441] = 201, + [1442] = 331, + [1443] = 339, + [1444] = 190, + [1445] = 1389, + [1446] = 265, + [1447] = 195, + [1448] = 237, + [1449] = 277, + [1450] = 270, + [1451] = 258, + [1452] = 328, + [1453] = 201, + [1454] = 201, + [1455] = 320, + [1456] = 314, + [1457] = 268, + [1458] = 190, + [1459] = 233, + [1460] = 331, + [1461] = 331, + [1462] = 191, + [1463] = 272, + [1464] = 398, + [1465] = 232, + [1466] = 344, + [1467] = 516, + [1468] = 235, + [1469] = 238, + [1470] = 201, + [1471] = 304, + [1472] = 199, + [1473] = 191, + [1474] = 303, + [1475] = 302, + [1476] = 294, + [1477] = 284, + [1478] = 276, + [1479] = 195, + [1480] = 277, + [1481] = 270, + [1482] = 268, + [1483] = 272, + [1484] = 235, + [1485] = 405, + [1486] = 196, + [1487] = 407, + [1488] = 235, + [1489] = 191, + [1490] = 232, + [1491] = 324, + [1492] = 287, + [1493] = 265, + [1494] = 258, + [1495] = 312, + [1496] = 393, + [1497] = 277, + [1498] = 237, + [1499] = 195, + [1500] = 270, + [1501] = 190, + [1502] = 238, + [1503] = 398, + [1504] = 399, + [1505] = 191, + [1506] = 287, + [1507] = 404, + [1508] = 403, + [1509] = 312, + [1510] = 402, + [1511] = 191, + [1512] = 191, + [1513] = 237, + [1514] = 233, + [1515] = 401, + [1516] = 191, + [1517] = 233, + [1518] = 232, + [1519] = 400, + [1520] = 287, + [1521] = 416, + [1522] = 276, + [1523] = 284, + [1524] = 516, + [1525] = 196, + [1526] = 201, + [1527] = 320, + [1528] = 211, + [1529] = 314, + [1530] = 422, + [1531] = 421, + [1532] = 211, + [1533] = 294, + [1534] = 302, + [1535] = 314, + [1536] = 420, + [1537] = 419, + [1538] = 315, + [1539] = 303, + [1540] = 320, + [1541] = 199, + [1542] = 321, + [1543] = 304, + [1544] = 189, + [1545] = 396, + [1546] = 237, + [1547] = 394, + [1548] = 212, + [1549] = 339, + [1550] = 324, + [1551] = 265, + [1552] = 196, + [1553] = 258, + [1554] = 201, + [1555] = 328, + [1556] = 324, + [1557] = 358, + [1558] = 258, + [1559] = 265, + [1560] = 331, + [1561] = 191, + [1562] = 117, + [1563] = 411, + [1564] = 328, + [1565] = 277, + [1566] = 392, + [1567] = 339, + [1568] = 276, + [1569] = 284, + [1570] = 268, + [1571] = 294, + [1572] = 302, + [1573] = 201, + [1574] = 212, + [1575] = 303, + [1576] = 199, + [1577] = 304, + [1578] = 190, + [1579] = 315, + [1580] = 189, + [1581] = 358, + [1582] = 117, + [1583] = 321, + [1584] = 270, + [1585] = 191, + [1586] = 344, + [1587] = 339, + [1588] = 258, + [1589] = 607, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 401, + [1596] = 1596, + [1597] = 191, + [1598] = 1598, + [1599] = 1599, + [1600] = 393, + [1601] = 1601, + [1602] = 1598, + [1603] = 422, + [1604] = 421, + [1605] = 420, + [1606] = 419, + [1607] = 211, + [1608] = 399, + [1609] = 1609, + [1610] = 1610, + [1611] = 422, + [1612] = 421, + [1613] = 1613, + [1614] = 212, + [1615] = 1615, + [1616] = 420, + [1617] = 419, + [1618] = 1618, + [1619] = 1619, + [1620] = 516, + [1621] = 1621, + [1622] = 1622, + [1623] = 1623, + [1624] = 1624, + [1625] = 1625, + [1626] = 416, + [1627] = 1627, + [1628] = 1628, + [1629] = 392, + [1630] = 1630, + [1631] = 1631, + [1632] = 1632, + [1633] = 1632, + [1634] = 1610, + [1635] = 1590, + [1636] = 1591, + [1637] = 1592, + [1638] = 411, + [1639] = 1593, + [1640] = 1594, + [1641] = 1596, + [1642] = 1599, + [1643] = 1631, + [1644] = 201, + [1645] = 416, + [1646] = 196, + [1647] = 1630, + [1648] = 195, + [1649] = 398, + [1650] = 407, + [1651] = 393, [1652] = 1652, - [1653] = 1653, - [1654] = 1654, - [1655] = 959, - [1656] = 527, - [1657] = 923, - [1658] = 946, - [1659] = 1659, - [1660] = 352, - [1661] = 950, - [1662] = 952, - [1663] = 378, - [1664] = 1654, - [1665] = 1665, - [1666] = 1666, - [1667] = 962, - [1668] = 963, - [1669] = 310, - [1670] = 1670, - [1671] = 319, - [1672] = 673, - [1673] = 914, - [1674] = 323, - [1675] = 630, - [1676] = 631, - [1677] = 966, - [1678] = 321, - [1679] = 953, - [1680] = 1680, - [1681] = 1681, - [1682] = 1682, - [1683] = 967, - [1684] = 968, - [1685] = 969, - [1686] = 970, - [1687] = 1652, - [1688] = 960, - [1689] = 320, - [1690] = 926, - [1691] = 971, - [1692] = 918, - [1693] = 916, - [1694] = 1694, - [1695] = 525, - [1696] = 923, - [1697] = 972, - [1698] = 337, - [1699] = 639, - [1700] = 527, - [1701] = 672, - [1702] = 1702, - [1703] = 376, - [1704] = 313, - [1705] = 1705, - [1706] = 639, - [1707] = 1707, - [1708] = 1708, - [1709] = 544, - [1710] = 375, - [1711] = 1711, - [1712] = 630, - [1713] = 631, - [1714] = 336, - [1715] = 315, - [1716] = 311, - [1717] = 1659, - [1718] = 314, - [1719] = 393, - [1720] = 676, - [1721] = 1721, - [1722] = 1680, - [1723] = 526, - [1724] = 1724, - [1725] = 943, - [1726] = 1707, - [1727] = 942, - [1728] = 913, - [1729] = 940, - [1730] = 613, - [1731] = 1665, - [1732] = 1682, - [1733] = 1711, - [1734] = 1724, - [1735] = 1735, - [1736] = 645, - [1737] = 1708, - [1738] = 1705, - [1739] = 1739, - [1740] = 1694, - [1741] = 1702, - [1742] = 343, - [1743] = 671, - [1744] = 372, - [1745] = 1735, - [1746] = 368, - [1747] = 1747, - [1748] = 1747, - [1749] = 670, - [1750] = 525, - [1751] = 335, - [1752] = 1752, - [1753] = 1739, - [1754] = 590, - [1755] = 358, - [1756] = 1756, - [1757] = 590, - [1758] = 639, - [1759] = 1759, - [1760] = 312, - [1761] = 939, - [1762] = 317, - [1763] = 315, - [1764] = 964, - [1765] = 1765, - [1766] = 333, - [1767] = 1765, - [1768] = 352, - [1769] = 1666, - [1770] = 338, - [1771] = 1670, - [1772] = 322, - [1773] = 931, - [1774] = 1774, - [1775] = 929, - [1776] = 382, - [1777] = 645, - [1778] = 932, - [1779] = 938, - [1780] = 331, - [1781] = 937, - [1782] = 650, - [1783] = 544, - [1784] = 346, - [1785] = 526, - [1786] = 676, - [1787] = 326, - [1788] = 673, - [1789] = 332, - [1790] = 651, - [1791] = 672, - [1792] = 330, - [1793] = 325, - [1794] = 528, - [1795] = 527, - [1796] = 1774, - [1797] = 525, - [1798] = 378, - [1799] = 916, - [1800] = 671, - [1801] = 965, - [1802] = 1759, - [1803] = 1681, - [1804] = 353, - [1805] = 650, - [1806] = 961, - [1807] = 1756, - [1808] = 916, - [1809] = 936, - [1810] = 328, - [1811] = 544, - [1812] = 670, - [1813] = 354, - [1814] = 324, - [1815] = 378, - [1816] = 651, - [1817] = 1752, - [1818] = 935, - [1819] = 934, - [1820] = 528, - [1821] = 933, - [1822] = 334, - [1823] = 329, - [1824] = 1653, - [1825] = 912, - [1826] = 923, - [1827] = 925, - [1828] = 650, - [1829] = 613, - [1830] = 926, - [1831] = 929, - [1832] = 955, - [1833] = 931, - [1834] = 932, - [1835] = 916, - [1836] = 963, - [1837] = 933, - [1838] = 639, - [1839] = 944, - [1840] = 1721, - [1841] = 934, - [1842] = 672, - [1843] = 950, - [1844] = 926, - [1845] = 952, - [1846] = 953, - [1847] = 925, - [1848] = 912, - [1849] = 960, - [1850] = 671, - [1851] = 645, - [1852] = 961, - [1853] = 964, - [1854] = 923, - [1855] = 916, - [1856] = 918, - [1857] = 925, - [1858] = 964, - [1859] = 923, - [1860] = 935, - [1861] = 931, - [1862] = 932, - [1863] = 965, - [1864] = 933, - [1865] = 915, - [1866] = 914, - [1867] = 944, - [1868] = 916, - [1869] = 934, - [1870] = 923, - [1871] = 670, - [1872] = 937, - [1873] = 935, - [1874] = 938, - [1875] = 619, - [1876] = 916, - [1877] = 939, - [1878] = 936, - [1879] = 914, - [1880] = 950, - [1881] = 923, - [1882] = 940, - [1883] = 937, - [1884] = 651, - [1885] = 938, - [1886] = 915, - [1887] = 913, - [1888] = 956, - [1889] = 972, - [1890] = 966, - [1891] = 953, - [1892] = 939, - [1893] = 590, - [1894] = 965, - [1895] = 676, - [1896] = 972, - [1897] = 942, - [1898] = 943, - [1899] = 940, - [1900] = 970, - [1901] = 971, - [1902] = 923, - [1903] = 971, - [1904] = 970, - [1905] = 525, - [1906] = 969, - [1907] = 912, - [1908] = 913, - [1909] = 942, - [1910] = 968, - [1911] = 544, - [1912] = 967, - [1913] = 945, - [1914] = 526, - [1915] = 963, - [1916] = 962, - [1917] = 943, - [1918] = 966, - [1919] = 936, - [1920] = 957, - [1921] = 527, - [1922] = 528, - [1923] = 951, - [1924] = 946, - [1925] = 947, - [1926] = 961, - [1927] = 916, - [1928] = 962, - [1929] = 918, - [1930] = 958, - [1931] = 959, - [1932] = 969, - [1933] = 945, - [1934] = 968, - [1935] = 948, - [1936] = 949, - [1937] = 959, - [1938] = 958, - [1939] = 916, - [1940] = 957, - [1941] = 967, - [1942] = 923, - [1943] = 946, - [1944] = 947, - [1945] = 948, - [1946] = 631, - [1947] = 956, - [1948] = 949, - [1949] = 630, - [1950] = 960, - [1951] = 673, - [1952] = 955, - [1953] = 923, - [1954] = 929, - [1955] = 954, - [1956] = 923, - [1957] = 954, - [1958] = 952, - [1959] = 951, - [1960] = 372, - [1961] = 955, - [1962] = 343, - [1963] = 326, - [1964] = 1964, - [1965] = 375, - [1966] = 372, - [1967] = 368, - [1968] = 358, - [1969] = 1969, - [1970] = 393, - [1971] = 378, - [1972] = 914, - [1973] = 915, - [1974] = 918, - [1975] = 916, - [1976] = 923, - [1977] = 912, - [1978] = 925, - [1979] = 926, - [1980] = 929, - [1981] = 944, - [1982] = 950, - [1983] = 952, - [1984] = 953, - [1985] = 923, - [1986] = 960, - [1987] = 321, - [1988] = 961, - [1989] = 964, - [1990] = 965, - [1991] = 966, - [1992] = 378, - [1993] = 971, - [1994] = 970, - [1995] = 969, - [1996] = 968, - [1997] = 967, - [1998] = 320, - [1999] = 311, - [2000] = 963, - [2001] = 962, - [2002] = 346, - [2003] = 959, - [2004] = 958, - [2005] = 957, - [2006] = 956, - [2007] = 368, - [2008] = 916, - [2009] = 954, - [2010] = 338, - [2011] = 336, - [2012] = 335, - [2013] = 333, - [2014] = 332, - [2015] = 331, - [2016] = 330, - [2017] = 951, - [2018] = 949, - [2019] = 948, - [2020] = 328, - [2021] = 354, - [2022] = 947, - [2023] = 946, - [2024] = 945, - [2025] = 943, - [2026] = 942, - [2027] = 913, - [2028] = 940, - [2029] = 939, - [2030] = 938, - [2031] = 937, - [2032] = 936, - [2033] = 935, - [2034] = 934, - [2035] = 933, - [2036] = 972, - [2037] = 931, - [2038] = 932, - [2039] = 375, - [2040] = 311, - [2041] = 916, - [2042] = 923, - [2043] = 343, - [2044] = 393, - [2045] = 358, - [2046] = 544, - [2047] = 590, - [2048] = 639, - [2049] = 525, - [2050] = 526, - [2051] = 527, - [2052] = 528, - [2053] = 382, - [2054] = 923, + [1653] = 394, + [1654] = 396, + [1655] = 339, + [1656] = 344, + [1657] = 191, + [1658] = 277, + [1659] = 358, + [1660] = 304, + [1661] = 199, + [1662] = 303, + [1663] = 270, + [1664] = 302, + [1665] = 294, + [1666] = 393, + [1667] = 398, + [1668] = 284, + [1669] = 399, + [1670] = 201, + [1671] = 276, + [1672] = 400, + [1673] = 268, + [1674] = 398, + [1675] = 265, + [1676] = 1619, + [1677] = 328, + [1678] = 401, + [1679] = 190, + [1680] = 1609, + [1681] = 1628, + [1682] = 237, + [1683] = 189, + [1684] = 321, + [1685] = 516, + [1686] = 315, + [1687] = 232, + [1688] = 1627, + [1689] = 233, + [1690] = 235, + [1691] = 402, + [1692] = 403, + [1693] = 404, + [1694] = 314, + [1695] = 405, + [1696] = 320, + [1697] = 238, + [1698] = 324, + [1699] = 407, + [1700] = 1625, + [1701] = 331, + [1702] = 521, + [1703] = 272, + [1704] = 1621, + [1705] = 520, + [1706] = 1624, + [1707] = 518, + [1708] = 1652, + [1709] = 238, + [1710] = 517, + [1711] = 516, + [1712] = 1623, + [1713] = 514, + [1714] = 272, + [1715] = 507, + [1716] = 405, + [1717] = 1622, + [1718] = 502, + [1719] = 287, + [1720] = 312, + [1721] = 443, + [1722] = 312, + [1723] = 404, + [1724] = 403, + [1725] = 416, + [1726] = 402, + [1727] = 487, + [1728] = 586, + [1729] = 587, + [1730] = 445, + [1731] = 588, + [1732] = 590, + [1733] = 593, + [1734] = 594, + [1735] = 440, + [1736] = 595, + [1737] = 596, + [1738] = 597, + [1739] = 599, + [1740] = 600, + [1741] = 601, + [1742] = 602, + [1743] = 439, + [1744] = 438, + [1745] = 435, + [1746] = 400, + [1747] = 392, + [1748] = 528, + [1749] = 609, + [1750] = 610, + [1751] = 611, + [1752] = 612, + [1753] = 614, + [1754] = 529, + [1755] = 628, + [1756] = 411, + [1757] = 1613, + [1758] = 635, + [1759] = 636, + [1760] = 1618, + [1761] = 1615, + [1762] = 1762, + [1763] = 419, + [1764] = 420, + [1765] = 421, + [1766] = 422, + [1767] = 191, + [1768] = 637, + [1769] = 638, + [1770] = 640, + [1771] = 642, + [1772] = 659, + [1773] = 660, + [1774] = 394, + [1775] = 396, + [1776] = 666, + [1777] = 667, + [1778] = 668, + [1779] = 669, + [1780] = 674, + [1781] = 665, + [1782] = 529, + [1783] = 665, + [1784] = 628, + [1785] = 597, + [1786] = 445, + [1787] = 660, + [1788] = 636, + [1789] = 596, + [1790] = 595, + [1791] = 516, + [1792] = 594, + [1793] = 590, + [1794] = 588, + [1795] = 614, + [1796] = 659, + [1797] = 517, + [1798] = 593, + [1799] = 587, + [1800] = 612, + [1801] = 586, + [1802] = 487, + [1803] = 1601, + [1804] = 404, + [1805] = 403, + [1806] = 402, + [1807] = 666, + [1808] = 642, + [1809] = 440, + [1810] = 502, + [1811] = 667, + [1812] = 400, + [1813] = 439, + [1814] = 611, + [1815] = 438, + [1816] = 435, + [1817] = 396, + [1818] = 394, + [1819] = 419, + [1820] = 668, + [1821] = 440, + [1822] = 586, + [1823] = 587, + [1824] = 588, + [1825] = 590, + [1826] = 593, + [1827] = 507, + [1828] = 594, + [1829] = 516, + [1830] = 599, + [1831] = 595, + [1832] = 516, + [1833] = 411, + [1834] = 596, + [1835] = 597, + [1836] = 516, + [1837] = 599, + [1838] = 610, + [1839] = 600, + [1840] = 601, + [1841] = 602, + [1842] = 392, + [1843] = 609, + [1844] = 610, + [1845] = 521, + [1846] = 520, + [1847] = 518, + [1848] = 517, + [1849] = 611, + [1850] = 516, + [1851] = 612, + [1852] = 514, + [1853] = 614, + [1854] = 628, + [1855] = 635, + [1856] = 636, + [1857] = 635, + [1858] = 637, + [1859] = 407, + [1860] = 405, + [1861] = 528, + [1862] = 638, + [1863] = 422, + [1864] = 514, + [1865] = 640, + [1866] = 507, + [1867] = 600, + [1868] = 642, + [1869] = 401, + [1870] = 601, + [1871] = 659, + [1872] = 502, + [1873] = 516, + [1874] = 421, + [1875] = 660, + [1876] = 487, + [1877] = 516, + [1878] = 399, + [1879] = 602, + [1880] = 666, + [1881] = 398, + [1882] = 667, + [1883] = 393, + [1884] = 668, + [1885] = 669, + [1886] = 674, + [1887] = 420, + [1888] = 665, + [1889] = 607, + [1890] = 529, + [1891] = 528, + [1892] = 416, + [1893] = 435, + [1894] = 669, + [1895] = 438, + [1896] = 518, + [1897] = 439, + [1898] = 516, + [1899] = 638, + [1900] = 443, + [1901] = 443, + [1902] = 674, + [1903] = 445, + [1904] = 637, + [1905] = 640, + [1906] = 520, + [1907] = 607, + [1908] = 609, + [1909] = 521, + [1910] = 665, + [1911] = 270, + [1912] = 232, + [1913] = 233, + [1914] = 636, + [1915] = 191, + [1916] = 237, + [1917] = 637, + [1918] = 191, + [1919] = 517, + [1920] = 594, + [1921] = 438, + [1922] = 235, + [1923] = 599, + [1924] = 270, + [1925] = 233, + [1926] = 635, + [1927] = 235, + [1928] = 502, + [1929] = 595, + [1930] = 201, + [1931] = 1931, + [1932] = 628, + [1933] = 638, + [1934] = 640, + [1935] = 642, + [1936] = 1936, + [1937] = 190, + [1938] = 593, + [1939] = 659, + [1940] = 304, + [1941] = 660, + [1942] = 199, + [1943] = 303, + [1944] = 196, + [1945] = 201, + [1946] = 516, + [1947] = 614, + [1948] = 302, + [1949] = 666, + [1950] = 667, + [1951] = 294, + [1952] = 668, + [1953] = 669, + [1954] = 284, + [1955] = 439, + [1956] = 674, + [1957] = 276, + [1958] = 612, + [1959] = 586, + [1960] = 339, + [1961] = 611, + [1962] = 265, + [1963] = 587, + [1964] = 588, + [1965] = 610, + [1966] = 590, + [1967] = 258, + [1968] = 609, + [1969] = 521, + [1970] = 607, + [1971] = 435, + [1972] = 520, + [1973] = 518, + [1974] = 440, + [1975] = 443, + [1976] = 597, + [1977] = 277, + [1978] = 277, + [1979] = 602, + [1980] = 601, + [1981] = 445, + [1982] = 232, + [1983] = 529, + [1984] = 596, + [1985] = 516, + [1986] = 507, + [1987] = 528, + [1988] = 514, + [1989] = 600, + [1990] = 487, + [1991] = 516, + [1992] = 398, + [1993] = 393, + [1994] = 416, + [1995] = 422, + [1996] = 421, + [1997] = 420, + [1998] = 419, + [1999] = 516, + [2000] = 211, + [2001] = 2001, + [2002] = 2002, + [2003] = 2002, + [2004] = 2004, + [2005] = 2005, + [2006] = 2002, + [2007] = 2005, + [2008] = 2008, + [2009] = 2002, + [2010] = 2002, + [2011] = 2005, + [2012] = 2004, + [2013] = 2002, + [2014] = 2014, + [2015] = 2002, + [2016] = 2005, + [2017] = 2017, + [2018] = 2005, + [2019] = 2008, + [2020] = 2008, + [2021] = 2005, + [2022] = 2005, + [2023] = 2005, + [2024] = 2024, + [2025] = 2004, + [2026] = 2017, + [2027] = 2002, + [2028] = 2008, + [2029] = 2002, + [2030] = 2008, + [2031] = 2004, + [2032] = 2017, + [2033] = 2008, + [2034] = 2004, + [2035] = 2002, + [2036] = 2004, + [2037] = 2002, + [2038] = 2002, + [2039] = 2017, + [2040] = 2008, + [2041] = 2004, + [2042] = 2017, + [2043] = 2017, + [2044] = 2017, + [2045] = 2002, + [2046] = 2008, + [2047] = 2002, + [2048] = 2004, + [2049] = 2002, + [2050] = 2008, + [2051] = 2004, + [2052] = 2017, + [2053] = 2017, + [2054] = 2005, [2055] = 2055, [2056] = 2056, [2057] = 2057, [2058] = 2058, - [2059] = 2056, + [2059] = 2059, [2060] = 2060, - [2061] = 2061, + [2061] = 2058, [2062] = 2057, - [2063] = 2060, + [2063] = 2058, [2064] = 2056, - [2065] = 2061, - [2066] = 2058, - [2067] = 2060, + [2065] = 2065, + [2066] = 2066, + [2067] = 2055, [2068] = 2056, - [2069] = 2056, - [2070] = 2060, - [2071] = 2061, - [2072] = 2058, - [2073] = 2060, - [2074] = 2058, - [2075] = 2061, + [2069] = 2055, + [2070] = 2056, + [2071] = 2055, + [2072] = 2072, + [2073] = 2055, + [2074] = 2055, + [2075] = 2056, [2076] = 2056, - [2077] = 2056, - [2078] = 2078, - [2079] = 2056, - [2080] = 2060, - [2081] = 2056, - [2082] = 2058, - [2083] = 2061, + [2077] = 2058, + [2078] = 2066, + [2079] = 2066, + [2080] = 2057, + [2081] = 2055, + [2082] = 2057, + [2083] = 2072, [2084] = 2057, - [2085] = 2060, - [2086] = 2056, - [2087] = 2058, - [2088] = 2058, - [2089] = 2061, - [2090] = 2060, - [2091] = 2056, + [2085] = 2055, + [2086] = 2057, + [2087] = 2072, + [2088] = 421, + [2089] = 2057, + [2090] = 2072, + [2091] = 2066, [2092] = 2056, - [2093] = 2056, + [2093] = 2057, [2094] = 2057, - [2095] = 2061, - [2096] = 2096, - [2097] = 2057, - [2098] = 2058, - [2099] = 2057, - [2100] = 2061, - [2101] = 2057, - [2102] = 2060, - [2103] = 2056, - [2104] = 2057, - [2105] = 2058, - [2106] = 2057, - [2107] = 2061, + [2095] = 420, + [2096] = 2066, + [2097] = 2097, + [2098] = 419, + [2099] = 2072, + [2100] = 2056, + [2101] = 2058, + [2102] = 2066, + [2103] = 2058, + [2104] = 2058, + [2105] = 2072, + [2106] = 2056, + [2107] = 2072, [2108] = 2056, - [2109] = 528, - [2110] = 2110, - [2111] = 2111, - [2112] = 2111, - [2113] = 2110, - [2114] = 2114, - [2115] = 2115, - [2116] = 2110, - [2117] = 2114, - [2118] = 2114, - [2119] = 2114, - [2120] = 2120, - [2121] = 2121, - [2122] = 2115, - [2123] = 2123, - [2124] = 2123, - [2125] = 2121, - [2126] = 2114, - [2127] = 2123, - [2128] = 2114, - [2129] = 2111, - [2130] = 2115, - [2131] = 2111, - [2132] = 2110, - [2133] = 2110, - [2134] = 2110, + [2109] = 2109, + [2110] = 2055, + [2111] = 2058, + [2112] = 2058, + [2113] = 2066, + [2114] = 2056, + [2115] = 2072, + [2116] = 416, + [2117] = 2058, + [2118] = 2056, + [2119] = 2072, + [2120] = 2109, + [2121] = 2055, + [2122] = 2057, + [2123] = 2058, + [2124] = 2124, + [2125] = 2055, + [2126] = 2057, + [2127] = 2057, + [2128] = 2128, + [2129] = 2129, + [2130] = 2072, + [2131] = 2057, + [2132] = 2066, + [2133] = 2059, + [2134] = 2129, [2135] = 2135, - [2136] = 2123, - [2137] = 2114, - [2138] = 2121, - [2139] = 2111, - [2140] = 2115, - [2141] = 2141, - [2142] = 2123, - [2143] = 2115, - [2144] = 2110, - [2145] = 2135, - [2146] = 2115, - [2147] = 2123, - [2148] = 2121, - [2149] = 2114, - [2150] = 2121, - [2151] = 2115, - [2152] = 2111, - [2153] = 544, - [2154] = 2115, - [2155] = 2110, - [2156] = 2114, - [2157] = 527, - [2158] = 2115, - [2159] = 526, - [2160] = 2110, - [2161] = 2115, - [2162] = 2162, - [2163] = 2114, - [2164] = 2121, - [2165] = 2115, - [2166] = 2110, - [2167] = 2121, - [2168] = 2123, - [2169] = 2169, - [2170] = 2110, - [2171] = 2114, - [2172] = 2110, - [2173] = 2111, - [2174] = 2111, - [2175] = 2175, - [2176] = 2114, - [2177] = 2111, - [2178] = 2178, - [2179] = 2141, - [2180] = 2111, - [2181] = 2115, - [2182] = 2182, - [2183] = 2183, - [2184] = 2115, - [2185] = 2114, - [2186] = 2121, - [2187] = 2123, - [2188] = 2121, - [2189] = 2115, - [2190] = 2110, - [2191] = 2175, - [2192] = 2111, - [2193] = 2121, - [2194] = 525, - [2195] = 2123, - [2196] = 2111, - [2197] = 2115, - [2198] = 2111, - [2199] = 2199, - [2200] = 2111, - [2201] = 2115, - [2202] = 2114, - [2203] = 2183, - [2204] = 2110, - [2205] = 2121, - [2206] = 525, - [2207] = 526, - [2208] = 527, - [2209] = 528, - [2210] = 544, - [2211] = 527, - [2212] = 525, - [2213] = 544, - [2214] = 528, - [2215] = 526, - [2216] = 527, - [2217] = 528, - [2218] = 544, - [2219] = 544, - [2220] = 525, - [2221] = 528, - [2222] = 528, - [2223] = 527, - [2224] = 526, - [2225] = 527, - [2226] = 526, - [2227] = 526, - [2228] = 525, - [2229] = 525, - [2230] = 544, - [2231] = 526, - [2232] = 527, - [2233] = 544, - [2234] = 525, - [2235] = 528, - [2236] = 527, - [2237] = 528, - [2238] = 525, - [2239] = 526, - [2240] = 544, - [2241] = 358, - [2242] = 2242, - [2243] = 2243, - [2244] = 382, - [2245] = 372, - [2246] = 2242, - [2247] = 2242, - [2248] = 2242, - [2249] = 375, - [2250] = 393, - [2251] = 2242, - [2252] = 2252, - [2253] = 343, - [2254] = 368, - [2255] = 2242, - [2256] = 2242, - [2257] = 2242, - [2258] = 2242, - [2259] = 2259, - [2260] = 2260, - [2261] = 2261, - [2262] = 2261, - [2263] = 2263, + [2136] = 2057, + [2137] = 2055, + [2138] = 2072, + [2139] = 2057, + [2140] = 2055, + [2141] = 2058, + [2142] = 2066, + [2143] = 2143, + [2144] = 2056, + [2145] = 2058, + [2146] = 2058, + [2147] = 2057, + [2148] = 2143, + [2149] = 2055, + [2150] = 422, + [2151] = 2056, + [2152] = 421, + [2153] = 419, + [2154] = 416, + [2155] = 422, + [2156] = 420, + [2157] = 421, + [2158] = 419, + [2159] = 420, + [2160] = 422, + [2161] = 416, + [2162] = 416, + [2163] = 420, + [2164] = 419, + [2165] = 421, + [2166] = 416, + [2167] = 421, + [2168] = 422, + [2169] = 420, + [2170] = 420, + [2171] = 419, + [2172] = 422, + [2173] = 421, + [2174] = 419, + [2175] = 422, + [2176] = 416, + [2177] = 421, + [2178] = 422, + [2179] = 416, + [2180] = 419, + [2181] = 420, + [2182] = 421, + [2183] = 416, + [2184] = 422, + [2185] = 420, + [2186] = 419, + [2187] = 2187, + [2188] = 232, + [2189] = 2189, + [2190] = 270, + [2191] = 233, + [2192] = 211, + [2193] = 2189, + [2194] = 2189, + [2195] = 2189, + [2196] = 2189, + [2197] = 2189, + [2198] = 2189, + [2199] = 277, + [2200] = 235, + [2201] = 2201, + [2202] = 2189, + [2203] = 2189, + [2204] = 2204, + [2205] = 2205, + [2206] = 2204, + [2207] = 2207, + [2208] = 2204, + [2209] = 2204, + [2210] = 2204, + [2211] = 2207, + [2212] = 2204, + [2213] = 2204, + [2214] = 2214, + [2215] = 2215, + [2216] = 2204, + [2217] = 2204, + [2218] = 2218, + [2219] = 2219, + [2220] = 235, + [2221] = 233, + [2222] = 270, + [2223] = 2223, + [2224] = 2224, + [2225] = 232, + [2226] = 277, + [2227] = 235, + [2228] = 2228, + [2229] = 2229, + [2230] = 2229, + [2231] = 2229, + [2232] = 2229, + [2233] = 2229, + [2234] = 2229, + [2235] = 2235, + [2236] = 2228, + [2237] = 2228, + [2238] = 2228, + [2239] = 2235, + [2240] = 2229, + [2241] = 277, + [2242] = 2228, + [2243] = 270, + [2244] = 2228, + [2245] = 232, + [2246] = 2228, + [2247] = 2229, + [2248] = 2228, + [2249] = 211, + [2250] = 2228, + [2251] = 233, + [2252] = 2229, + [2253] = 2253, + [2254] = 2254, + [2255] = 2255, + [2256] = 2256, + [2257] = 2256, + [2258] = 1931, + [2259] = 2254, + [2260] = 277, + [2261] = 2255, + [2262] = 2254, + [2263] = 2256, [2264] = 2264, - [2265] = 2265, - [2266] = 2261, - [2267] = 2264, - [2268] = 2261, - [2269] = 2261, - [2270] = 2261, - [2271] = 2271, - [2272] = 2261, - [2273] = 2261, - [2274] = 2261, - [2275] = 358, - [2276] = 372, - [2277] = 393, - [2278] = 343, - [2279] = 2279, - [2280] = 368, - [2281] = 375, + [2265] = 270, + [2266] = 277, + [2267] = 2255, + [2268] = 2256, + [2269] = 232, + [2270] = 233, + [2271] = 235, + [2272] = 2255, + [2273] = 232, + [2274] = 2255, + [2275] = 2255, + [2276] = 2276, + [2277] = 2255, + [2278] = 233, + [2279] = 2254, + [2280] = 2256, + [2281] = 270, [2282] = 2282, [2283] = 2283, - [2284] = 2284, - [2285] = 2285, - [2286] = 2285, - [2287] = 343, - [2288] = 2284, - [2289] = 2285, - [2290] = 368, - [2291] = 2284, - [2292] = 358, - [2293] = 2284, - [2294] = 375, - [2295] = 2285, - [2296] = 2284, - [2297] = 393, - [2298] = 2284, - [2299] = 2285, - [2300] = 2285, - [2301] = 2283, - [2302] = 2285, - [2303] = 2284, - [2304] = 2284, - [2305] = 2284, - [2306] = 2285, - [2307] = 382, - [2308] = 372, - [2309] = 2285, + [2284] = 2256, + [2285] = 2256, + [2286] = 2286, + [2287] = 2254, + [2288] = 2286, + [2289] = 2254, + [2290] = 235, + [2291] = 2256, + [2292] = 2292, + [2293] = 2255, + [2294] = 2254, + [2295] = 235, + [2296] = 1936, + [2297] = 2297, + [2298] = 270, + [2299] = 2256, + [2300] = 233, + [2301] = 2254, + [2302] = 2255, + [2303] = 2303, + [2304] = 2297, + [2305] = 277, + [2306] = 2254, + [2307] = 232, + [2308] = 2308, + [2309] = 2308, [2310] = 2310, [2311] = 2311, - [2312] = 343, - [2313] = 2310, - [2314] = 375, - [2315] = 372, - [2316] = 368, - [2317] = 375, - [2318] = 393, - [2319] = 393, - [2320] = 2320, - [2321] = 375, - [2322] = 372, - [2323] = 2323, - [2324] = 2310, - [2325] = 2325, - [2326] = 2323, - [2327] = 2325, - [2328] = 358, - [2329] = 368, - [2330] = 1969, - [2331] = 2331, - [2332] = 2325, - [2333] = 343, - [2334] = 2323, - [2335] = 2325, - [2336] = 2323, - [2337] = 368, - [2338] = 2338, - [2339] = 2323, - [2340] = 2310, - [2341] = 2341, - [2342] = 2325, - [2343] = 358, - [2344] = 2344, - [2345] = 1964, - [2346] = 2346, - [2347] = 2310, - [2348] = 2310, - [2349] = 2325, - [2350] = 358, - [2351] = 2351, - [2352] = 2341, - [2353] = 2325, - [2354] = 372, - [2355] = 2325, - [2356] = 2356, - [2357] = 2325, - [2358] = 2323, - [2359] = 2310, - [2360] = 2323, - [2361] = 2323, - [2362] = 343, - [2363] = 393, - [2364] = 2310, - [2365] = 2338, - [2366] = 2310, - [2367] = 2323, - [2368] = 1964, - [2369] = 2369, - [2370] = 393, - [2371] = 2371, + [2312] = 2310, + [2313] = 1931, + [2314] = 2311, + [2315] = 2311, + [2316] = 2311, + [2317] = 2308, + [2318] = 2310, + [2319] = 2319, + [2320] = 2319, + [2321] = 2321, + [2322] = 235, + [2323] = 2308, + [2324] = 2324, + [2325] = 2308, + [2326] = 2311, + [2327] = 2311, + [2328] = 2319, + [2329] = 2308, + [2330] = 2308, + [2331] = 2310, + [2332] = 2332, + [2333] = 270, + [2334] = 2334, + [2335] = 2310, + [2336] = 2311, + [2337] = 2337, + [2338] = 2308, + [2339] = 2319, + [2340] = 2340, + [2341] = 2310, + [2342] = 233, + [2343] = 2310, + [2344] = 2319, + [2345] = 2319, + [2346] = 2311, + [2347] = 2347, + [2348] = 2348, + [2349] = 2321, + [2350] = 2319, + [2351] = 2308, + [2352] = 2352, + [2353] = 2310, + [2354] = 277, + [2355] = 2355, + [2356] = 2319, + [2357] = 2340, + [2358] = 2319, + [2359] = 232, + [2360] = 2310, + [2361] = 2311, + [2362] = 2362, + [2363] = 2363, + [2364] = 2363, + [2365] = 2365, + [2366] = 2366, + [2367] = 2363, + [2368] = 2368, + [2369] = 2366, + [2370] = 2370, + [2371] = 2370, [2372] = 2372, - [2373] = 2372, - [2374] = 368, - [2375] = 2372, - [2376] = 2371, - [2377] = 2369, - [2378] = 2369, - [2379] = 2369, - [2380] = 2372, - [2381] = 2371, - [2382] = 2382, - [2383] = 2369, - [2384] = 2371, - [2385] = 2382, - [2386] = 372, + [2373] = 2368, + [2374] = 2374, + [2375] = 2276, + [2376] = 2370, + [2377] = 2365, + [2378] = 2378, + [2379] = 2366, + [2380] = 2378, + [2381] = 2374, + [2382] = 2372, + [2383] = 2363, + [2384] = 2384, + [2385] = 2374, + [2386] = 2363, [2387] = 2372, - [2388] = 2382, - [2389] = 2389, - [2390] = 2390, - [2391] = 2372, - [2392] = 2382, - [2393] = 2393, - [2394] = 2394, - [2395] = 2395, + [2388] = 2366, + [2389] = 2374, + [2390] = 2378, + [2391] = 2366, + [2392] = 2374, + [2393] = 2370, + [2394] = 2368, + [2395] = 2366, [2396] = 2396, - [2397] = 358, - [2398] = 2369, - [2399] = 2372, - [2400] = 2393, - [2401] = 2371, + [2397] = 2378, + [2398] = 2378, + [2399] = 2365, + [2400] = 2372, + [2401] = 2363, [2402] = 2402, - [2403] = 2382, - [2404] = 2372, - [2405] = 2382, - [2406] = 2371, - [2407] = 2407, - [2408] = 375, - [2409] = 2382, - [2410] = 2369, - [2411] = 2371, - [2412] = 2412, - [2413] = 2382, - [2414] = 2414, - [2415] = 343, - [2416] = 2382, - [2417] = 2417, - [2418] = 2371, - [2419] = 2394, - [2420] = 2371, - [2421] = 2369, + [2403] = 2372, + [2404] = 2283, + [2405] = 2405, + [2406] = 2374, + [2407] = 2363, + [2408] = 2408, + [2409] = 2365, + [2410] = 2370, + [2411] = 2363, + [2412] = 2372, + [2413] = 2363, + [2414] = 2366, + [2415] = 2363, + [2416] = 2370, + [2417] = 2366, + [2418] = 2365, + [2419] = 2370, + [2420] = 2363, + [2421] = 2366, [2422] = 2372, - [2423] = 2369, - [2424] = 2356, - [2425] = 2425, - [2426] = 2426, - [2427] = 2427, - [2428] = 2427, - [2429] = 2429, - [2430] = 2430, - [2431] = 2426, - [2432] = 2429, - [2433] = 2433, - [2434] = 2434, - [2435] = 2433, - [2436] = 2436, - [2437] = 2437, - [2438] = 2438, - [2439] = 2439, - [2440] = 2440, - [2441] = 2430, - [2442] = 2430, - [2443] = 2440, - [2444] = 2437, - [2445] = 2430, - [2446] = 2440, - [2447] = 2437, - [2448] = 2430, - [2449] = 2430, - [2450] = 2437, - [2451] = 2437, - [2452] = 2430, - [2453] = 2437, - [2454] = 2430, - [2455] = 2440, - [2456] = 2437, - [2457] = 2438, - [2458] = 2430, - [2459] = 2438, - [2460] = 2437, - [2461] = 2430, - [2462] = 2427, - [2463] = 2429, - [2464] = 2433, - [2465] = 2438, - [2466] = 2426, - [2467] = 2437, - [2468] = 2437, - [2469] = 2430, - [2470] = 2430, - [2471] = 2426, - [2472] = 2430, - [2473] = 2437, - [2474] = 2474, - [2475] = 2430, - [2476] = 2440, - [2477] = 2438, - [2478] = 2437, - [2479] = 2479, - [2480] = 2437, - [2481] = 2439, - [2482] = 2430, - [2483] = 2437, - [2484] = 2437, - [2485] = 2331, - [2486] = 2437, - [2487] = 2430, - [2488] = 2440, - [2489] = 2430, - [2490] = 2437, - [2491] = 2437, - [2492] = 2425, - [2493] = 2433, - [2494] = 2430, - [2495] = 2429, - [2496] = 2430, - [2497] = 2433, - [2498] = 2427, - [2499] = 2430, - [2500] = 2429, - [2501] = 2438, - [2502] = 2426, - [2503] = 2427, - [2504] = 2427, - [2505] = 2505, - [2506] = 2438, - [2507] = 2440, - [2508] = 2425, - [2509] = 2437, - [2510] = 2426, - [2511] = 2427, - [2512] = 2437, - [2513] = 2440, - [2514] = 2437, - [2515] = 2434, - [2516] = 2440, - [2517] = 2517, - [2518] = 2427, - [2519] = 2429, - [2520] = 2520, - [2521] = 2433, - [2522] = 2433, - [2523] = 2438, - [2524] = 2426, - [2525] = 2427, - [2526] = 2430, - [2527] = 2429, - [2528] = 2426, - [2529] = 2433, - [2530] = 2429, - [2531] = 2437, - [2532] = 2430, - [2533] = 2426, - [2534] = 2433, + [2423] = 2363, + [2424] = 2366, + [2425] = 2374, + [2426] = 2366, + [2427] = 2378, + [2428] = 2363, + [2429] = 2366, + [2430] = 2363, + [2431] = 2431, + [2432] = 2432, + [2433] = 2363, + [2434] = 2365, + [2435] = 2366, + [2436] = 2368, + [2437] = 2366, + [2438] = 2363, + [2439] = 2366, + [2440] = 2366, + [2441] = 2402, + [2442] = 2368, + [2443] = 2366, + [2444] = 2363, + [2445] = 2366, + [2446] = 2446, + [2447] = 2363, + [2448] = 2363, + [2449] = 2363, + [2450] = 2450, + [2451] = 2402, + [2452] = 2368, + [2453] = 2366, + [2454] = 2368, + [2455] = 2455, + [2456] = 2365, + [2457] = 2366, + [2458] = 2363, + [2459] = 2378, + [2460] = 2374, + [2461] = 2372, + [2462] = 2431, + [2463] = 2370, + [2464] = 2378, + [2465] = 2368, + [2466] = 2366, + [2467] = 2366, + [2468] = 2365, + [2469] = 2370, + [2470] = 2368, + [2471] = 2372, + [2472] = 2365, + [2473] = 2446, + [2474] = 2363, + [2475] = 2374, + [2476] = 2378, + [2477] = 2477, + [2478] = 270, + [2479] = 277, + [2480] = 2477, + [2481] = 2477, + [2482] = 2482, + [2483] = 2477, + [2484] = 2484, + [2485] = 2484, + [2486] = 2477, + [2487] = 2487, + [2488] = 2488, + [2489] = 235, + [2490] = 233, + [2491] = 2477, + [2492] = 232, + [2493] = 2493, + [2494] = 2477, + [2495] = 2488, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2482, + [2500] = 2493, + [2501] = 212, + [2502] = 2477, + [2503] = 2477, + [2504] = 2504, + [2505] = 2477, + [2506] = 2477, + [2507] = 2507, + [2508] = 2508, + [2509] = 2508, + [2510] = 2508, + [2511] = 2507, + [2512] = 2507, + [2513] = 2507, + [2514] = 2508, + [2515] = 2515, + [2516] = 2515, + [2517] = 2507, + [2518] = 2508, + [2519] = 2507, + [2520] = 2508, + [2521] = 2507, + [2522] = 2507, + [2523] = 2523, + [2524] = 2508, + [2525] = 2508, + [2526] = 2507, + [2527] = 2508, + [2528] = 2528, + [2529] = 2529, + [2530] = 2530, + [2531] = 2531, + [2532] = 212, + [2533] = 2533, + [2534] = 2531, [2535] = 2535, - [2536] = 2429, - [2537] = 2438, + [2536] = 212, + [2537] = 2537, [2538] = 2538, - [2539] = 2539, - [2540] = 343, - [2541] = 2541, - [2542] = 358, - [2543] = 2543, - [2544] = 2543, - [2545] = 2543, - [2546] = 2546, - [2547] = 368, - [2548] = 2548, - [2549] = 2543, - [2550] = 2550, - [2551] = 2543, - [2552] = 2541, - [2553] = 2553, - [2554] = 2543, + [2539] = 2537, + [2540] = 2540, + [2541] = 2537, + [2542] = 2535, + [2543] = 2537, + [2544] = 287, + [2545] = 2538, + [2546] = 2538, + [2547] = 314, + [2548] = 2535, + [2549] = 2549, + [2550] = 268, + [2551] = 2538, + [2552] = 2552, + [2553] = 2537, + [2554] = 2554, [2555] = 2555, - [2556] = 2555, - [2557] = 393, - [2558] = 2543, - [2559] = 372, - [2560] = 2543, - [2561] = 376, - [2562] = 2543, - [2563] = 2543, - [2564] = 2538, - [2565] = 2550, - [2566] = 2566, - [2567] = 2543, - [2568] = 375, - [2569] = 2569, - [2570] = 2570, - [2571] = 2569, - [2572] = 2570, - [2573] = 2573, - [2574] = 2569, - [2575] = 2570, - [2576] = 2569, - [2577] = 2570, - [2578] = 2569, - [2579] = 2570, - [2580] = 2570, - [2581] = 2569, - [2582] = 2582, - [2583] = 2582, - [2584] = 2569, - [2585] = 2570, - [2586] = 2569, - [2587] = 2569, - [2588] = 2570, - [2589] = 2570, - [2590] = 376, - [2591] = 2591, - [2592] = 2592, - [2593] = 2593, - [2594] = 2591, - [2595] = 2595, - [2596] = 2596, - [2597] = 325, - [2598] = 2598, - [2599] = 2599, - [2600] = 2600, - [2601] = 2601, - [2602] = 2598, + [2556] = 2535, + [2557] = 211, + [2558] = 2558, + [2559] = 2535, + [2560] = 2537, + [2561] = 2554, + [2562] = 2538, + [2563] = 2563, + [2564] = 2535, + [2565] = 2565, + [2566] = 2565, + [2567] = 2535, + [2568] = 2568, + [2569] = 324, + [2570] = 2535, + [2571] = 2538, + [2572] = 2535, + [2573] = 2537, + [2574] = 331, + [2575] = 2538, + [2576] = 2540, + [2577] = 211, + [2578] = 2538, + [2579] = 2579, + [2580] = 2558, + [2581] = 2568, + [2582] = 320, + [2583] = 2537, + [2584] = 2552, + [2585] = 2537, + [2586] = 2538, + [2587] = 314, + [2588] = 2588, + [2589] = 2588, + [2590] = 2588, + [2591] = 331, + [2592] = 2588, + [2593] = 2588, + [2594] = 268, + [2595] = 287, + [2596] = 2588, + [2597] = 211, + [2598] = 2588, + [2599] = 312, + [2600] = 2588, + [2601] = 212, + [2602] = 2588, [2603] = 2603, - [2604] = 313, - [2605] = 2599, - [2606] = 2606, - [2607] = 2607, - [2608] = 2598, - [2609] = 2600, - [2610] = 2598, - [2611] = 2599, - [2612] = 2599, - [2613] = 2613, - [2614] = 2614, - [2615] = 2598, - [2616] = 2616, - [2617] = 2617, - [2618] = 2618, - [2619] = 2613, - [2620] = 2599, - [2621] = 2601, - [2622] = 2614, - [2623] = 2598, - [2624] = 2598, - [2625] = 376, - [2626] = 329, - [2627] = 2599, - [2628] = 2617, - [2629] = 2600, + [2604] = 238, + [2605] = 320, + [2606] = 2588, + [2607] = 2588, + [2608] = 2588, + [2609] = 2603, + [2610] = 2610, + [2611] = 2588, + [2612] = 272, + [2613] = 324, + [2614] = 212, + [2615] = 211, + [2616] = 2588, + [2617] = 2588, + [2618] = 320, + [2619] = 324, + [2620] = 2620, + [2621] = 2621, + [2622] = 2622, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2623, + [2627] = 2627, + [2628] = 2628, + [2629] = 2623, [2630] = 2630, - [2631] = 312, - [2632] = 2600, - [2633] = 317, - [2634] = 382, - [2635] = 2599, - [2636] = 2600, - [2637] = 2600, - [2638] = 2618, - [2639] = 2600, - [2640] = 2606, - [2641] = 322, - [2642] = 2600, - [2643] = 2599, - [2644] = 2600, - [2645] = 382, - [2646] = 2598, - [2647] = 2598, - [2648] = 2599, - [2649] = 317, - [2650] = 2650, - [2651] = 2650, - [2652] = 2650, - [2653] = 2650, - [2654] = 352, - [2655] = 2655, - [2656] = 376, - [2657] = 312, - [2658] = 2650, - [2659] = 315, - [2660] = 329, - [2661] = 313, - [2662] = 2650, - [2663] = 2650, - [2664] = 2650, - [2665] = 2650, - [2666] = 2650, - [2667] = 2650, - [2668] = 325, - [2669] = 322, - [2670] = 353, - [2671] = 2650, - [2672] = 2650, - [2673] = 2650, - [2674] = 382, - [2675] = 2655, - [2676] = 382, - [2677] = 376, - [2678] = 2650, - [2679] = 2679, - [2680] = 2630, + [2631] = 2631, + [2632] = 2623, + [2633] = 2623, + [2634] = 2623, + [2635] = 312, + [2636] = 2636, + [2637] = 2637, + [2638] = 2638, + [2639] = 287, + [2640] = 272, + [2641] = 331, + [2642] = 2642, + [2643] = 268, + [2644] = 238, + [2645] = 2623, + [2646] = 268, + [2647] = 2568, + [2648] = 314, + [2649] = 2623, + [2650] = 287, + [2651] = 312, + [2652] = 2627, + [2653] = 272, + [2654] = 2654, + [2655] = 2622, + [2656] = 324, + [2657] = 320, + [2658] = 2623, + [2659] = 331, + [2660] = 2579, + [2661] = 2630, + [2662] = 238, + [2663] = 314, + [2664] = 2628, + [2665] = 2665, + [2666] = 287, + [2667] = 2667, + [2668] = 2668, + [2669] = 2667, + [2670] = 2665, + [2671] = 2671, + [2672] = 2667, + [2673] = 2673, + [2674] = 2665, + [2675] = 2668, + [2676] = 2676, + [2677] = 2677, + [2678] = 314, + [2679] = 2668, + [2680] = 2665, [2681] = 2681, - [2682] = 315, + [2682] = 2668, [2683] = 2683, - [2684] = 313, - [2685] = 329, - [2686] = 313, + [2684] = 2684, + [2685] = 320, + [2686] = 2681, [2687] = 2687, - [2688] = 352, - [2689] = 312, + [2688] = 2683, + [2689] = 2684, [2690] = 2687, - [2691] = 2691, - [2692] = 325, - [2693] = 353, - [2694] = 2687, - [2695] = 2687, - [2696] = 2696, + [2691] = 2667, + [2692] = 2687, + [2693] = 238, + [2694] = 324, + [2695] = 2684, + [2696] = 2683, [2697] = 2697, - [2698] = 317, - [2699] = 353, - [2700] = 2687, - [2701] = 2606, - [2702] = 325, - [2703] = 2687, - [2704] = 2681, - [2705] = 2687, - [2706] = 352, - [2707] = 329, - [2708] = 322, - [2709] = 315, - [2710] = 322, - [2711] = 2711, - [2712] = 2712, - [2713] = 317, - [2714] = 2714, - [2715] = 2715, - [2716] = 2716, - [2717] = 2717, - [2718] = 2696, - [2719] = 312, - [2720] = 2720, - [2721] = 2721, - [2722] = 2721, - [2723] = 2723, - [2724] = 2683, - [2725] = 2687, - [2726] = 2687, - [2727] = 2727, - [2728] = 2728, - [2729] = 2729, - [2730] = 2728, - [2731] = 2731, - [2732] = 2732, - [2733] = 325, - [2734] = 2734, + [2698] = 2677, + [2699] = 2699, + [2700] = 2681, + [2701] = 2687, + [2702] = 2697, + [2703] = 2703, + [2704] = 2704, + [2705] = 2684, + [2706] = 2665, + [2707] = 2697, + [2708] = 2708, + [2709] = 2668, + [2710] = 2683, + [2711] = 2697, + [2712] = 2667, + [2713] = 2697, + [2714] = 2677, + [2715] = 2708, + [2716] = 2697, + [2717] = 2708, + [2718] = 2697, + [2719] = 2671, + [2720] = 2704, + [2721] = 2676, + [2722] = 2681, + [2723] = 2677, + [2724] = 2671, + [2725] = 2667, + [2726] = 2704, + [2727] = 268, + [2728] = 331, + [2729] = 272, + [2730] = 2704, + [2731] = 2668, + [2732] = 2697, + [2733] = 2708, + [2734] = 312, [2735] = 2735, - [2736] = 2727, - [2737] = 2737, - [2738] = 2738, + [2736] = 2676, + [2737] = 268, + [2738] = 2668, [2739] = 2739, - [2740] = 2739, - [2741] = 2738, - [2742] = 2739, - [2743] = 2727, - [2744] = 313, - [2745] = 2739, - [2746] = 2734, - [2747] = 2732, - [2748] = 2748, - [2749] = 2749, - [2750] = 315, - [2751] = 2751, - [2752] = 2738, - [2753] = 2739, - [2754] = 2754, - [2755] = 2737, - [2756] = 2735, - [2757] = 2757, - [2758] = 2758, - [2759] = 2731, - [2760] = 2737, - [2761] = 2761, - [2762] = 2729, - [2763] = 2735, - [2764] = 2729, - [2765] = 2765, - [2766] = 2729, - [2767] = 2727, - [2768] = 2739, - [2769] = 2735, + [2740] = 2740, + [2741] = 2741, + [2742] = 2703, + [2743] = 2676, + [2744] = 2668, + [2745] = 2677, + [2746] = 2746, + [2747] = 2687, + [2748] = 2667, + [2749] = 2684, + [2750] = 2683, + [2751] = 2665, + [2752] = 2668, + [2753] = 2753, + [2754] = 2681, + [2755] = 2704, + [2756] = 2665, + [2757] = 2668, + [2758] = 2671, + [2759] = 2677, + [2760] = 2760, + [2761] = 2667, + [2762] = 2676, + [2763] = 2668, + [2764] = 2665, + [2765] = 2671, + [2766] = 2704, + [2767] = 2767, + [2768] = 2668, + [2769] = 2671, [2770] = 2770, - [2771] = 2771, + [2771] = 2681, [2772] = 2772, - [2773] = 2729, - [2774] = 2774, - [2775] = 2728, - [2776] = 2731, - [2777] = 2739, - [2778] = 2749, - [2779] = 2779, + [2773] = 2681, + [2774] = 2708, + [2775] = 2683, + [2776] = 2684, + [2777] = 2704, + [2778] = 2778, + [2779] = 2687, [2780] = 2780, - [2781] = 2729, - [2782] = 2734, - [2783] = 2783, - [2784] = 2738, - [2785] = 2735, - [2786] = 2734, - [2787] = 2770, - [2788] = 2788, - [2789] = 2739, - [2790] = 2788, - [2791] = 2791, - [2792] = 329, - [2793] = 2749, - [2794] = 2731, - [2795] = 2795, - [2796] = 2729, - [2797] = 2797, - [2798] = 2749, - [2799] = 2770, - [2800] = 2732, - [2801] = 2749, - [2802] = 2728, - [2803] = 2728, - [2804] = 322, - [2805] = 312, - [2806] = 2732, - [2807] = 2783, - [2808] = 2735, - [2809] = 2734, + [2781] = 2735, + [2782] = 2782, + [2783] = 2667, + [2784] = 2708, + [2785] = 2668, + [2786] = 2683, + [2787] = 2787, + [2788] = 2676, + [2789] = 2789, + [2790] = 2687, + [2791] = 2708, + [2792] = 2687, + [2793] = 2793, + [2794] = 2684, + [2795] = 2683, + [2796] = 2681, + [2797] = 2684, + [2798] = 2798, + [2799] = 2799, + [2800] = 2665, + [2801] = 2697, + [2802] = 2668, + [2803] = 2563, + [2804] = 2671, + [2805] = 2677, + [2806] = 2676, + [2807] = 2708, + [2808] = 2687, + [2809] = 2704, [2810] = 2810, - [2811] = 317, - [2812] = 2737, - [2813] = 2788, - [2814] = 2731, - [2815] = 2738, - [2816] = 2739, - [2817] = 2770, - [2818] = 2607, - [2819] = 312, - [2820] = 2820, - [2821] = 2737, - [2822] = 2735, - [2823] = 2823, - [2824] = 2729, - [2825] = 2788, - [2826] = 2739, - [2827] = 2728, - [2828] = 2731, - [2829] = 2731, - [2830] = 2728, - [2831] = 2770, - [2832] = 2788, - [2833] = 2727, - [2834] = 2735, - [2835] = 2737, - [2836] = 317, + [2811] = 2811, + [2812] = 2704, + [2813] = 2676, + [2814] = 287, + [2815] = 2684, + [2816] = 331, + [2817] = 2671, + [2818] = 324, + [2819] = 320, + [2820] = 314, + [2821] = 2821, + [2822] = 2676, + [2823] = 312, + [2824] = 2677, + [2825] = 272, + [2826] = 2677, + [2827] = 238, + [2828] = 2668, + [2829] = 2671, + [2830] = 2708, + [2831] = 2681, + [2832] = 2683, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, [2837] = 2837, - [2838] = 2729, - [2839] = 2770, - [2840] = 2779, - [2841] = 2737, - [2842] = 2842, - [2843] = 353, + [2838] = 2836, + [2839] = 2834, + [2840] = 2833, + [2841] = 2841, + [2842] = 2841, + [2843] = 2843, [2844] = 2844, - [2845] = 2788, - [2846] = 2739, - [2847] = 2739, - [2848] = 2738, - [2849] = 2734, - [2850] = 2788, - [2851] = 315, - [2852] = 352, - [2853] = 2732, - [2854] = 322, - [2855] = 2738, - [2856] = 2739, - [2857] = 2727, - [2858] = 2749, + [2845] = 2841, + [2846] = 2834, + [2847] = 2834, + [2848] = 2841, + [2849] = 2833, + [2850] = 2833, + [2851] = 2833, + [2852] = 2834, + [2853] = 2836, + [2854] = 2833, + [2855] = 2834, + [2856] = 2856, + [2857] = 2833, + [2858] = 2841, [2859] = 2859, - [2860] = 2728, - [2861] = 2732, - [2862] = 2770, - [2863] = 2734, - [2864] = 2738, - [2865] = 2788, - [2866] = 2770, - [2867] = 2788, - [2868] = 2731, - [2869] = 2728, - [2870] = 2749, - [2871] = 313, - [2872] = 329, - [2873] = 352, - [2874] = 2749, - [2875] = 2727, - [2876] = 2734, - [2877] = 2732, - [2878] = 2749, - [2879] = 2770, - [2880] = 2732, - [2881] = 2734, - [2882] = 2727, - [2883] = 2727, - [2884] = 2737, - [2885] = 2738, - [2886] = 2739, - [2887] = 2732, - [2888] = 2739, - [2889] = 2889, - [2890] = 2731, - [2891] = 325, - [2892] = 2737, - [2893] = 353, - [2894] = 2735, - [2895] = 2895, - [2896] = 2896, - [2897] = 2897, + [2860] = 2836, + [2861] = 2843, + [2862] = 2862, + [2863] = 2863, + [2864] = 2843, + [2865] = 2833, + [2866] = 2843, + [2867] = 2856, + [2868] = 2841, + [2869] = 2836, + [2870] = 2870, + [2871] = 2871, + [2872] = 2836, + [2873] = 2843, + [2874] = 2874, + [2875] = 2841, + [2876] = 2834, + [2877] = 2856, + [2878] = 2836, + [2879] = 2856, + [2880] = 2836, + [2881] = 2856, + [2882] = 2856, + [2883] = 2843, + [2884] = 2841, + [2885] = 2834, + [2886] = 2856, + [2887] = 2843, + [2888] = 2856, + [2889] = 2856, + [2890] = 2834, + [2891] = 2841, + [2892] = 2843, + [2893] = 2871, + [2894] = 2836, + [2895] = 2843, + [2896] = 2835, + [2897] = 2833, [2898] = 2898, [2899] = 2899, - [2900] = 2898, - [2901] = 2897, - [2902] = 2896, + [2900] = 2900, + [2901] = 2901, + [2902] = 2902, [2903] = 2903, - [2904] = 2899, - [2905] = 2898, - [2906] = 2903, - [2907] = 2898, - [2908] = 2903, - [2909] = 2898, - [2910] = 2897, - [2911] = 2897, - [2912] = 2898, - [2913] = 2913, - [2914] = 2899, - [2915] = 2899, + [2904] = 2904, + [2905] = 2905, + [2906] = 2906, + [2907] = 2907, + [2908] = 2908, + [2909] = 2909, + [2910] = 2910, + [2911] = 2911, + [2912] = 2912, + [2913] = 2901, + [2914] = 2914, + [2915] = 2915, [2916] = 2916, - [2917] = 2897, + [2917] = 2917, [2918] = 2918, [2919] = 2919, - [2920] = 2903, - [2921] = 2897, - [2922] = 2903, + [2920] = 2920, + [2921] = 2921, + [2922] = 2901, [2923] = 2899, - [2924] = 2899, - [2925] = 2925, - [2926] = 2895, - [2927] = 2918, - [2928] = 2898, + [2924] = 2911, + [2925] = 2915, + [2926] = 2912, + [2927] = 2920, + [2928] = 2928, [2929] = 2929, [2930] = 2930, - [2931] = 2903, - [2932] = 2895, - [2933] = 2933, - [2934] = 2934, - [2935] = 2895, - [2936] = 2899, - [2937] = 2897, - [2938] = 2895, - [2939] = 2895, - [2940] = 2895, - [2941] = 2897, - [2942] = 2895, - [2943] = 2895, - [2944] = 2898, - [2945] = 2903, - [2946] = 2903, - [2947] = 2903, - [2948] = 2913, - [2949] = 2918, - [2950] = 2899, - [2951] = 2898, - [2952] = 2918, - [2953] = 2953, - [2954] = 2918, - [2955] = 2918, - [2956] = 2918, - [2957] = 2897, - [2958] = 2918, - [2959] = 2899, - [2960] = 2918, + [2931] = 2928, + [2932] = 2919, + [2933] = 2912, + [2934] = 2902, + [2935] = 2935, + [2936] = 2936, + [2937] = 2914, + [2938] = 2918, + [2939] = 2939, + [2940] = 2920, + [2941] = 2921, + [2942] = 2908, + [2943] = 2902, + [2944] = 2904, + [2945] = 2915, + [2946] = 2906, + [2947] = 2907, + [2948] = 2918, + [2949] = 2949, + [2950] = 2950, + [2951] = 2909, + [2952] = 2952, + [2953] = 2911, + [2954] = 2903, + [2955] = 2900, + [2956] = 1389, + [2957] = 2919, + [2958] = 2916, + [2959] = 2959, + [2960] = 2904, [2961] = 2961, [2962] = 2962, - [2963] = 2963, - [2964] = 2964, + [2963] = 2928, + [2964] = 2917, [2965] = 2965, - [2966] = 2966, + [2966] = 2917, [2967] = 2967, - [2968] = 2968, - [2969] = 2969, - [2970] = 2970, - [2971] = 2971, - [2972] = 2972, - [2973] = 2973, - [2974] = 2964, - [2975] = 2961, - [2976] = 2976, - [2977] = 2964, - [2978] = 1425, - [2979] = 2979, - [2980] = 2980, - [2981] = 2981, - [2982] = 2982, - [2983] = 2983, - [2984] = 2967, + [2968] = 2899, + [2969] = 2914, + [2970] = 2915, + [2971] = 2901, + [2972] = 2903, + [2973] = 2920, + [2974] = 2909, + [2975] = 2908, + [2976] = 2907, + [2977] = 2906, + [2978] = 2911, + [2979] = 2921, + [2980] = 2904, + [2981] = 2930, + [2982] = 2902, + [2983] = 2903, + [2984] = 2984, [2985] = 2985, - [2986] = 2986, - [2987] = 2976, - [2988] = 2988, - [2989] = 2961, - [2990] = 2990, - [2991] = 2991, - [2992] = 2962, + [2986] = 2921, + [2987] = 2916, + [2988] = 2919, + [2989] = 2918, + [2990] = 2899, + [2991] = 2915, + [2992] = 2928, [2993] = 2993, [2994] = 2994, - [2995] = 1426, - [2996] = 2996, - [2997] = 2997, + [2995] = 2904, + [2996] = 2912, + [2997] = 2906, [2998] = 2998, - [2999] = 2779, - [3000] = 3000, - [3001] = 3001, - [3002] = 2973, + [2999] = 2911, + [3000] = 2907, + [3001] = 2912, + [3002] = 2928, [3003] = 3003, - [3004] = 2979, + [3004] = 2899, [3005] = 3005, - [3006] = 2998, - [3007] = 2973, - [3008] = 2998, - [3009] = 3005, - [3010] = 2968, - [3011] = 3011, - [3012] = 3003, - [3013] = 2982, - [3014] = 2973, - [3015] = 3015, - [3016] = 2964, - [3017] = 2966, - [3018] = 2965, - [3019] = 2985, - [3020] = 2986, - [3021] = 3005, - [3022] = 2988, - [3023] = 2988, - [3024] = 2971, - [3025] = 3025, - [3026] = 2961, - [3027] = 2991, - [3028] = 3028, - [3029] = 2962, - [3030] = 3030, - [3031] = 3031, - [3032] = 3000, - [3033] = 2982, - [3034] = 2979, - [3035] = 3001, - [3036] = 3036, - [3037] = 3001, - [3038] = 2961, - [3039] = 2996, - [3040] = 3000, - [3041] = 2976, - [3042] = 2982, - [3043] = 2961, - [3044] = 3044, - [3045] = 3045, - [3046] = 2976, - [3047] = 3047, - [3048] = 2996, - [3049] = 3000, - [3050] = 2979, - [3051] = 1466, - [3052] = 2962, - [3053] = 2991, - [3054] = 2961, - [3055] = 3055, - [3056] = 3001, - [3057] = 3057, - [3058] = 2988, - [3059] = 2979, - [3060] = 3060, - [3061] = 2964, - [3062] = 3062, - [3063] = 3025, - [3064] = 2986, + [3006] = 3006, + [3007] = 2918, + [3008] = 3008, + [3009] = 3009, + [3010] = 2919, + [3011] = 2920, + [3012] = 2915, + [3013] = 2921, + [3014] = 2930, + [3015] = 2904, + [3016] = 2906, + [3017] = 2907, + [3018] = 2919, + [3019] = 2908, + [3020] = 2911, + [3021] = 3021, + [3022] = 2903, + [3023] = 2909, + [3024] = 2909, + [3025] = 2901, + [3026] = 2914, + [3027] = 2917, + [3028] = 2916, + [3029] = 3029, + [3030] = 2916, + [3031] = 2917, + [3032] = 2914, + [3033] = 2915, + [3034] = 2914, + [3035] = 2909, + [3036] = 2907, + [3037] = 2906, + [3038] = 2904, + [3039] = 2902, + [3040] = 2921, + [3041] = 2911, + [3042] = 2916, + [3043] = 3043, + [3044] = 2920, + [3045] = 2918, + [3046] = 2899, + [3047] = 2912, + [3048] = 2928, + [3049] = 2920, + [3050] = 2908, + [3051] = 2920, + [3052] = 1385, + [3053] = 1383, + [3054] = 2901, + [3055] = 2917, + [3056] = 3056, + [3057] = 2916, + [3058] = 3058, + [3059] = 3059, + [3060] = 2914, + [3061] = 3061, + [3062] = 3056, + [3063] = 2909, + [3064] = 2735, [3065] = 3065, - [3066] = 2961, - [3067] = 2982, - [3068] = 2997, - [3069] = 2985, - [3070] = 2976, - [3071] = 2979, - [3072] = 2965, - [3073] = 2994, - [3074] = 2961, - [3075] = 2966, - [3076] = 2964, - [3077] = 2976, - [3078] = 2967, - [3079] = 3003, - [3080] = 2979, - [3081] = 3062, - [3082] = 2961, - [3083] = 2964, - [3084] = 3084, - [3085] = 2973, - [3086] = 2961, - [3087] = 2976, - [3088] = 2982, - [3089] = 2998, - [3090] = 3055, - [3091] = 2961, - [3092] = 3092, - [3093] = 3093, - [3094] = 2964, - [3095] = 3005, - [3096] = 2968, + [3066] = 3066, + [3067] = 2907, + [3068] = 2998, + [3069] = 2906, + [3070] = 2904, + [3071] = 2911, + [3072] = 2949, + [3073] = 2939, + [3074] = 2930, + [3075] = 2910, + [3076] = 2993, + [3077] = 3077, + [3078] = 3078, + [3079] = 3079, + [3080] = 3079, + [3081] = 3081, + [3082] = 3021, + [3083] = 2952, + [3084] = 2919, + [3085] = 3085, + [3086] = 2921, + [3087] = 2902, + [3088] = 3005, + [3089] = 3006, + [3090] = 2967, + [3091] = 3009, + [3092] = 2965, + [3093] = 2920, + [3094] = 2961, + [3095] = 2930, + [3096] = 3029, [3097] = 3097, - [3098] = 3084, - [3099] = 2961, - [3100] = 3005, - [3101] = 2979, - [3102] = 2976, - [3103] = 2968, - [3104] = 3104, - [3105] = 3003, - [3106] = 2963, - [3107] = 3107, - [3108] = 2961, - [3109] = 2982, - [3110] = 2964, - [3111] = 2967, - [3112] = 2961, - [3113] = 3113, - [3114] = 2996, - [3115] = 2976, - [3116] = 2966, - [3117] = 2965, - [3118] = 2961, - [3119] = 2993, - [3120] = 2985, - [3121] = 3000, - [3122] = 2979, - [3123] = 2986, - [3124] = 3005, - [3125] = 3005, - [3126] = 2986, - [3127] = 2962, - [3128] = 2993, - [3129] = 2988, - [3130] = 2982, - [3131] = 2961, - [3132] = 3132, - [3133] = 3133, - [3134] = 2968, - [3135] = 2991, - [3136] = 2961, - [3137] = 3047, - [3138] = 2986, - [3139] = 2962, - [3140] = 2998, - [3141] = 2996, - [3142] = 3000, - [3143] = 2973, - [3144] = 3001, - [3145] = 3001, - [3146] = 2988, - [3147] = 2998, - [3148] = 3148, + [3098] = 2918, + [3099] = 2915, + [3100] = 2899, + [3101] = 2901, + [3102] = 3102, + [3103] = 3066, + [3104] = 3065, + [3105] = 2905, + [3106] = 3106, + [3107] = 2930, + [3108] = 2920, + [3109] = 2902, + [3110] = 2930, + [3111] = 2915, + [3112] = 3102, + [3113] = 2912, + [3114] = 3079, + [3115] = 2952, + [3116] = 2920, + [3117] = 2902, + [3118] = 3079, + [3119] = 2952, + [3120] = 2928, + [3121] = 2903, + [3122] = 3079, + [3123] = 2952, + [3124] = 2920, + [3125] = 2930, + [3126] = 3079, + [3127] = 2952, + [3128] = 2919, + [3129] = 2920, + [3130] = 3079, + [3131] = 2952, + [3132] = 2902, + [3133] = 2920, + [3134] = 3079, + [3135] = 2952, + [3136] = 2908, + [3137] = 2920, + [3138] = 3079, + [3139] = 2952, + [3140] = 2903, + [3141] = 3043, + [3142] = 3008, + [3143] = 2930, + [3144] = 2911, + [3145] = 2908, + [3146] = 2920, + [3147] = 3077, + [3148] = 2994, [3149] = 3149, - [3150] = 3003, - [3151] = 2998, - [3152] = 3001, - [3153] = 3000, - [3154] = 3104, - [3155] = 3092, - [3156] = 2967, - [3157] = 3028, - [3158] = 2996, - [3159] = 2973, - [3160] = 3036, - [3161] = 3060, - [3162] = 2962, - [3163] = 3163, - [3164] = 2996, - [3165] = 3165, - [3166] = 2991, - [3167] = 2961, - [3168] = 2983, - [3169] = 2988, - [3170] = 3030, - [3171] = 3057, - [3172] = 3133, - [3173] = 2993, - [3174] = 2986, - [3175] = 2985, - [3176] = 2965, - [3177] = 3177, - [3178] = 2986, - [3179] = 2998, - [3180] = 2966, - [3181] = 3005, - [3182] = 2967, - [3183] = 2983, - [3184] = 3133, - [3185] = 3003, - [3186] = 2968, - [3187] = 2983, - [3188] = 3133, - [3189] = 3189, - [3190] = 2985, - [3191] = 2983, - [3192] = 3133, - [3193] = 3003, - [3194] = 2968, - [3195] = 2983, - [3196] = 3133, - [3197] = 2967, - [3198] = 2966, - [3199] = 2983, - [3200] = 3133, - [3201] = 2965, - [3202] = 2985, - [3203] = 2983, - [3204] = 3133, - [3205] = 2965, - [3206] = 2986, - [3207] = 2983, - [3208] = 3133, - [3209] = 2998, - [3210] = 3149, - [3211] = 3211, - [3212] = 2973, - [3213] = 2988, - [3214] = 3015, - [3215] = 2973, - [3216] = 2991, - [3217] = 3177, - [3218] = 3189, - [3219] = 2961, - [3220] = 3220, - [3221] = 3165, - [3222] = 2966, - [3223] = 3005, - [3224] = 3163, - [3225] = 2968, - [3226] = 3001, - [3227] = 3062, - [3228] = 3003, - [3229] = 2967, - [3230] = 2961, - [3231] = 2991, - [3232] = 2966, - [3233] = 2962, - [3234] = 3000, - [3235] = 2996, - [3236] = 2996, - [3237] = 2991, - [3238] = 2962, - [3239] = 2991, - [3240] = 2961, - [3241] = 2982, - [3242] = 2988, - [3243] = 2965, - [3244] = 2985, - [3245] = 2993, - [3246] = 2986, - [3247] = 2985, - [3248] = 2986, - [3249] = 2965, - [3250] = 3000, - [3251] = 3107, - [3252] = 2966, - [3253] = 3001, - [3254] = 3044, - [3255] = 3011, - [3256] = 2967, - [3257] = 2993, - [3258] = 3003, - [3259] = 2993, - [3260] = 3045, - [3261] = 2993, - [3262] = 3211, - [3263] = 2993, - [3264] = 2968, - [3265] = 3265, - [3266] = 3265, - [3267] = 3265, - [3268] = 3265, - [3269] = 3265, - [3270] = 3265, - [3271] = 3265, - [3272] = 3265, - [3273] = 3265, - [3274] = 3265, - [3275] = 3265, - [3276] = 3265, - [3277] = 3265, - [3278] = 3265, - [3279] = 3265, - [3280] = 3265, - [3281] = 3265, - [3282] = 3265, - [3283] = 3265, - [3284] = 3265, - [3285] = 3265, - [3286] = 3286, - [3287] = 3287, - [3288] = 3265, + [3150] = 2908, + [3151] = 2920, + [3152] = 2908, + [3153] = 2903, + [3154] = 2901, + [3155] = 2920, + [3156] = 3077, + [3157] = 3061, + [3158] = 2917, + [3159] = 2916, + [3160] = 2919, + [3161] = 2920, + [3162] = 2928, + [3163] = 2914, + [3164] = 2909, + [3165] = 2928, + [3166] = 2907, + [3167] = 2906, + [3168] = 2912, + [3169] = 2920, + [3170] = 2899, + [3171] = 2918, + [3172] = 2920, + [3173] = 2921, + [3174] = 3077, + [3175] = 3081, + [3176] = 2904, + [3177] = 2906, + [3178] = 2907, + [3179] = 2909, + [3180] = 2904, + [3181] = 2914, + [3182] = 2916, + [3183] = 3029, + [3184] = 2917, + [3185] = 3185, + [3186] = 3106, + [3187] = 2904, + [3188] = 3077, + [3189] = 2921, + [3190] = 2920, + [3191] = 2984, + [3192] = 3149, + [3193] = 3077, + [3194] = 2918, + [3195] = 2917, + [3196] = 2899, + [3197] = 3077, + [3198] = 2912, + [3199] = 3077, + [3200] = 2901, + [3201] = 3077, + [3202] = 2903, + [3203] = 3203, + [3204] = 3204, + [3205] = 3204, + [3206] = 3204, + [3207] = 3204, + [3208] = 3204, + [3209] = 3204, + [3210] = 3204, + [3211] = 3204, + [3212] = 3204, + [3213] = 3204, + [3214] = 3204, + [3215] = 3204, + [3216] = 3216, + [3217] = 3204, + [3218] = 3204, + [3219] = 3204, + [3220] = 3204, + [3221] = 3204, + [3222] = 3204, + [3223] = 3204, + [3224] = 3204, + [3225] = 3204, + [3226] = 3204, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -7910,23 +7841,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 39, .external_lex_state = 3}, [32] = {.lex_state = 39, .external_lex_state = 3}, [33] = {.lex_state = 39, .external_lex_state = 3}, - [34] = {.lex_state = 39, .external_lex_state = 3}, + [34] = {.lex_state = 39, .external_lex_state = 2}, [35] = {.lex_state = 39, .external_lex_state = 2}, - [36] = {.lex_state = 39, .external_lex_state = 2}, + [36] = {.lex_state = 39, .external_lex_state = 3}, [37] = {.lex_state = 39, .external_lex_state = 3}, [38] = {.lex_state = 39, .external_lex_state = 3}, [39] = {.lex_state = 39, .external_lex_state = 3}, [40] = {.lex_state = 39, .external_lex_state = 4}, [41] = {.lex_state = 39, .external_lex_state = 4}, [42] = {.lex_state = 39, .external_lex_state = 4}, - [43] = {.lex_state = 39, .external_lex_state = 3}, - [44] = {.lex_state = 39, .external_lex_state = 3}, + [43] = {.lex_state = 39, .external_lex_state = 4}, + [44] = {.lex_state = 39, .external_lex_state = 4}, [45] = {.lex_state = 39, .external_lex_state = 4}, [46] = {.lex_state = 39, .external_lex_state = 4}, [47] = {.lex_state = 39, .external_lex_state = 4}, [48] = {.lex_state = 39, .external_lex_state = 4}, - [49] = {.lex_state = 39, .external_lex_state = 4}, - [50] = {.lex_state = 39, .external_lex_state = 2}, + [49] = {.lex_state = 39, .external_lex_state = 2}, + [50] = {.lex_state = 39, .external_lex_state = 4}, [51] = {.lex_state = 39, .external_lex_state = 4}, [52] = {.lex_state = 39, .external_lex_state = 4}, [53] = {.lex_state = 39, .external_lex_state = 4}, @@ -7937,20 +7868,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [58] = {.lex_state = 39, .external_lex_state = 4}, [59] = {.lex_state = 39, .external_lex_state = 4}, [60] = {.lex_state = 39, .external_lex_state = 4}, - [61] = {.lex_state = 39, .external_lex_state = 4}, - [62] = {.lex_state = 39, .external_lex_state = 4}, + [61] = {.lex_state = 39, .external_lex_state = 3}, + [62] = {.lex_state = 39, .external_lex_state = 3}, [63] = {.lex_state = 39, .external_lex_state = 4}, [64] = {.lex_state = 39, .external_lex_state = 4}, [65] = {.lex_state = 39, .external_lex_state = 4}, [66] = {.lex_state = 39, .external_lex_state = 4}, [67] = {.lex_state = 39, .external_lex_state = 4}, - [68] = {.lex_state = 39, .external_lex_state = 4}, + [68] = {.lex_state = 39, .external_lex_state = 2}, [69] = {.lex_state = 39, .external_lex_state = 4}, [70] = {.lex_state = 39, .external_lex_state = 4}, [71] = {.lex_state = 39, .external_lex_state = 4}, [72] = {.lex_state = 39, .external_lex_state = 4}, [73] = {.lex_state = 39, .external_lex_state = 4}, - [74] = {.lex_state = 39, .external_lex_state = 2}, + [74] = {.lex_state = 39, .external_lex_state = 4}, [75] = {.lex_state = 39, .external_lex_state = 4}, [76] = {.lex_state = 3, .external_lex_state = 5}, [77] = {.lex_state = 3, .external_lex_state = 5}, @@ -7992,10 +7923,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [113] = {.lex_state = 39, .external_lex_state = 5}, [114] = {.lex_state = 39, .external_lex_state = 5}, [115] = {.lex_state = 39, .external_lex_state = 5}, - [116] = {.lex_state = 39, .external_lex_state = 5}, - [117] = {.lex_state = 39, .external_lex_state = 6}, + [116] = {.lex_state = 39, .external_lex_state = 6}, + [117] = {.lex_state = 39, .external_lex_state = 3}, [118] = {.lex_state = 39, .external_lex_state = 5}, - [119] = {.lex_state = 39, .external_lex_state = 6}, + [119] = {.lex_state = 39, .external_lex_state = 5}, [120] = {.lex_state = 39, .external_lex_state = 6}, [121] = {.lex_state = 39, .external_lex_state = 5}, [122] = {.lex_state = 39, .external_lex_state = 5}, @@ -8003,274 +7934,274 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [124] = {.lex_state = 39, .external_lex_state = 5}, [125] = {.lex_state = 39, .external_lex_state = 6}, [126] = {.lex_state = 39, .external_lex_state = 5}, - [127] = {.lex_state = 39, .external_lex_state = 6}, + [127] = {.lex_state = 39, .external_lex_state = 5}, [128] = {.lex_state = 39, .external_lex_state = 5}, - [129] = {.lex_state = 39, .external_lex_state = 5}, - [130] = {.lex_state = 39, .external_lex_state = 6}, - [131] = {.lex_state = 39, .external_lex_state = 6}, + [129] = {.lex_state = 39, .external_lex_state = 6}, + [130] = {.lex_state = 39, .external_lex_state = 3}, + [131] = {.lex_state = 39, .external_lex_state = 5}, [132] = {.lex_state = 39, .external_lex_state = 5}, - [133] = {.lex_state = 39, .external_lex_state = 5}, + [133] = {.lex_state = 39, .external_lex_state = 6}, [134] = {.lex_state = 39, .external_lex_state = 5}, [135] = {.lex_state = 39, .external_lex_state = 5}, [136] = {.lex_state = 39, .external_lex_state = 5}, - [137] = {.lex_state = 39, .external_lex_state = 5}, - [138] = {.lex_state = 39, .external_lex_state = 6}, + [137] = {.lex_state = 39, .external_lex_state = 6}, + [138] = {.lex_state = 39, .external_lex_state = 5}, [139] = {.lex_state = 39, .external_lex_state = 5}, - [140] = {.lex_state = 39, .external_lex_state = 5}, - [141] = {.lex_state = 39, .external_lex_state = 6}, + [140] = {.lex_state = 39, .external_lex_state = 6}, + [141] = {.lex_state = 39, .external_lex_state = 2}, [142] = {.lex_state = 39, .external_lex_state = 6}, - [143] = {.lex_state = 39, .external_lex_state = 5}, + [143] = {.lex_state = 39, .external_lex_state = 2}, [144] = {.lex_state = 39, .external_lex_state = 6}, - [145] = {.lex_state = 39, .external_lex_state = 6}, - [146] = {.lex_state = 39, .external_lex_state = 3}, - [147] = {.lex_state = 39, .external_lex_state = 6}, - [148] = {.lex_state = 39, .external_lex_state = 6}, + [145] = {.lex_state = 39, .external_lex_state = 5}, + [146] = {.lex_state = 39, .external_lex_state = 2}, + [147] = {.lex_state = 39, .external_lex_state = 5}, + [148] = {.lex_state = 39, .external_lex_state = 3}, [149] = {.lex_state = 39, .external_lex_state = 6}, [150] = {.lex_state = 39, .external_lex_state = 6}, - [151] = {.lex_state = 39, .external_lex_state = 7}, - [152] = {.lex_state = 39, .external_lex_state = 2}, - [153] = {.lex_state = 39, .external_lex_state = 7}, + [151] = {.lex_state = 39, .external_lex_state = 6}, + [152] = {.lex_state = 39, .external_lex_state = 6}, + [153] = {.lex_state = 39, .external_lex_state = 6}, [154] = {.lex_state = 39, .external_lex_state = 6}, [155] = {.lex_state = 39, .external_lex_state = 6}, - [156] = {.lex_state = 39, .external_lex_state = 7}, - [157] = {.lex_state = 39, .external_lex_state = 3}, + [156] = {.lex_state = 39, .external_lex_state = 6}, + [157] = {.lex_state = 39, .external_lex_state = 6}, [158] = {.lex_state = 39, .external_lex_state = 6}, [159] = {.lex_state = 39, .external_lex_state = 6}, [160] = {.lex_state = 39, .external_lex_state = 6}, [161] = {.lex_state = 39, .external_lex_state = 7}, [162] = {.lex_state = 39, .external_lex_state = 6}, - [163] = {.lex_state = 39, .external_lex_state = 7}, - [164] = {.lex_state = 39, .external_lex_state = 6}, - [165] = {.lex_state = 39, .external_lex_state = 3}, + [163] = {.lex_state = 39, .external_lex_state = 6}, + [164] = {.lex_state = 39, .external_lex_state = 7}, + [165] = {.lex_state = 39, .external_lex_state = 6}, [166] = {.lex_state = 39, .external_lex_state = 6}, - [167] = {.lex_state = 39, .external_lex_state = 2}, + [167] = {.lex_state = 39, .external_lex_state = 6}, [168] = {.lex_state = 39, .external_lex_state = 6}, [169] = {.lex_state = 39, .external_lex_state = 6}, - [170] = {.lex_state = 39, .external_lex_state = 7}, + [170] = {.lex_state = 39, .external_lex_state = 6}, [171] = {.lex_state = 39, .external_lex_state = 6}, [172] = {.lex_state = 39, .external_lex_state = 7}, - [173] = {.lex_state = 39, .external_lex_state = 7}, - [174] = {.lex_state = 39, .external_lex_state = 6}, + [173] = {.lex_state = 39, .external_lex_state = 6}, + [174] = {.lex_state = 39, .external_lex_state = 2}, [175] = {.lex_state = 39, .external_lex_state = 6}, [176] = {.lex_state = 39, .external_lex_state = 7}, - [177] = {.lex_state = 39, .external_lex_state = 2}, + [177] = {.lex_state = 39, .external_lex_state = 7}, [178] = {.lex_state = 39, .external_lex_state = 6}, - [179] = {.lex_state = 39, .external_lex_state = 6}, + [179] = {.lex_state = 39, .external_lex_state = 7}, [180] = {.lex_state = 39, .external_lex_state = 6}, - [181] = {.lex_state = 39, .external_lex_state = 6}, + [181] = {.lex_state = 39, .external_lex_state = 7}, [182] = {.lex_state = 39, .external_lex_state = 6}, - [183] = {.lex_state = 39, .external_lex_state = 6}, - [184] = {.lex_state = 39, .external_lex_state = 6}, - [185] = {.lex_state = 39, .external_lex_state = 2}, + [183] = {.lex_state = 39, .external_lex_state = 7}, + [184] = {.lex_state = 39, .external_lex_state = 7}, + [185] = {.lex_state = 39, .external_lex_state = 6}, [186] = {.lex_state = 39, .external_lex_state = 6}, [187] = {.lex_state = 39, .external_lex_state = 6}, [188] = {.lex_state = 39, .external_lex_state = 6}, - [189] = {.lex_state = 20, .external_lex_state = 2}, - [190] = {.lex_state = 20, .external_lex_state = 2}, - [191] = {.lex_state = 20, .external_lex_state = 2}, - [192] = {.lex_state = 20, .external_lex_state = 2}, - [193] = {.lex_state = 39, .external_lex_state = 7}, - [194] = {.lex_state = 20, .external_lex_state = 2}, - [195] = {.lex_state = 20, .external_lex_state = 2}, - [196] = {.lex_state = 20, .external_lex_state = 2}, - [197] = {.lex_state = 20, .external_lex_state = 2}, - [198] = {.lex_state = 20, .external_lex_state = 2}, - [199] = {.lex_state = 20, .external_lex_state = 2}, - [200] = {.lex_state = 20, .external_lex_state = 2}, - [201] = {.lex_state = 39, .external_lex_state = 7}, + [189] = {.lex_state = 39, .external_lex_state = 3}, + [190] = {.lex_state = 39, .external_lex_state = 3}, + [191] = {.lex_state = 39, .external_lex_state = 2}, + [192] = {.lex_state = 39, .external_lex_state = 3}, + [193] = {.lex_state = 39, .external_lex_state = 3}, + [194] = {.lex_state = 39, .external_lex_state = 3}, + [195] = {.lex_state = 39, .external_lex_state = 3}, + [196] = {.lex_state = 39, .external_lex_state = 3}, + [197] = {.lex_state = 39, .external_lex_state = 7}, + [198] = {.lex_state = 39, .external_lex_state = 2}, + [199] = {.lex_state = 39, .external_lex_state = 3}, + [200] = {.lex_state = 39, .external_lex_state = 7}, + [201] = {.lex_state = 39, .external_lex_state = 3}, [202] = {.lex_state = 20, .external_lex_state = 2}, [203] = {.lex_state = 20, .external_lex_state = 2}, [204] = {.lex_state = 20, .external_lex_state = 2}, [205] = {.lex_state = 20, .external_lex_state = 2}, - [206] = {.lex_state = 20, .external_lex_state = 2}, + [206] = {.lex_state = 39, .external_lex_state = 2}, [207] = {.lex_state = 20, .external_lex_state = 2}, [208] = {.lex_state = 20, .external_lex_state = 2}, [209] = {.lex_state = 20, .external_lex_state = 2}, [210] = {.lex_state = 20, .external_lex_state = 2}, - [211] = {.lex_state = 20, .external_lex_state = 2}, - [212] = {.lex_state = 20, .external_lex_state = 2}, + [211] = {.lex_state = 39, .external_lex_state = 3}, + [212] = {.lex_state = 39, .external_lex_state = 3}, [213] = {.lex_state = 20, .external_lex_state = 2}, - [214] = {.lex_state = 20, .external_lex_state = 2}, - [215] = {.lex_state = 20, .external_lex_state = 2}, + [214] = {.lex_state = 39, .external_lex_state = 2}, + [215] = {.lex_state = 39, .external_lex_state = 2}, [216] = {.lex_state = 20, .external_lex_state = 2}, - [217] = {.lex_state = 39, .external_lex_state = 7}, + [217] = {.lex_state = 20, .external_lex_state = 2}, [218] = {.lex_state = 20, .external_lex_state = 2}, - [219] = {.lex_state = 39, .external_lex_state = 7}, - [220] = {.lex_state = 20, .external_lex_state = 2}, + [219] = {.lex_state = 20, .external_lex_state = 2}, + [220] = {.lex_state = 39, .external_lex_state = 7}, [221] = {.lex_state = 20, .external_lex_state = 2}, - [222] = {.lex_state = 39, .external_lex_state = 7}, + [222] = {.lex_state = 39, .external_lex_state = 2}, [223] = {.lex_state = 20, .external_lex_state = 2}, - [224] = {.lex_state = 20, .external_lex_state = 2}, - [225] = {.lex_state = 20, .external_lex_state = 2}, - [226] = {.lex_state = 39, .external_lex_state = 7}, + [224] = {.lex_state = 39, .external_lex_state = 2}, + [225] = {.lex_state = 39, .external_lex_state = 7}, + [226] = {.lex_state = 39, .external_lex_state = 2}, [227] = {.lex_state = 20, .external_lex_state = 2}, [228] = {.lex_state = 20, .external_lex_state = 2}, - [229] = {.lex_state = 39, .external_lex_state = 7}, + [229] = {.lex_state = 20, .external_lex_state = 2}, [230] = {.lex_state = 20, .external_lex_state = 2}, [231] = {.lex_state = 20, .external_lex_state = 2}, - [232] = {.lex_state = 20, .external_lex_state = 2}, - [233] = {.lex_state = 20, .external_lex_state = 2}, + [232] = {.lex_state = 39, .external_lex_state = 3}, + [233] = {.lex_state = 39, .external_lex_state = 3}, [234] = {.lex_state = 20, .external_lex_state = 2}, - [235] = {.lex_state = 20, .external_lex_state = 2}, - [236] = {.lex_state = 39, .external_lex_state = 2}, - [237] = {.lex_state = 20, .external_lex_state = 2}, - [238] = {.lex_state = 20, .external_lex_state = 2}, - [239] = {.lex_state = 39, .external_lex_state = 6}, - [240] = {.lex_state = 39, .external_lex_state = 7}, + [235] = {.lex_state = 39, .external_lex_state = 3}, + [236] = {.lex_state = 20, .external_lex_state = 2}, + [237] = {.lex_state = 39, .external_lex_state = 3}, + [238] = {.lex_state = 39, .external_lex_state = 3}, + [239] = {.lex_state = 20, .external_lex_state = 2}, + [240] = {.lex_state = 20, .external_lex_state = 2}, [241] = {.lex_state = 20, .external_lex_state = 2}, - [242] = {.lex_state = 39, .external_lex_state = 2}, - [243] = {.lex_state = 39, .external_lex_state = 7}, - [244] = {.lex_state = 39, .external_lex_state = 7}, - [245] = {.lex_state = 39, .external_lex_state = 2}, + [242] = {.lex_state = 20, .external_lex_state = 2}, + [243] = {.lex_state = 20, .external_lex_state = 2}, + [244] = {.lex_state = 20, .external_lex_state = 2}, + [245] = {.lex_state = 20, .external_lex_state = 2}, [246] = {.lex_state = 20, .external_lex_state = 2}, - [247] = {.lex_state = 39, .external_lex_state = 7}, - [248] = {.lex_state = 39, .external_lex_state = 2}, + [247] = {.lex_state = 20, .external_lex_state = 2}, + [248] = {.lex_state = 20, .external_lex_state = 2}, [249] = {.lex_state = 20, .external_lex_state = 2}, - [250] = {.lex_state = 20, .external_lex_state = 2}, - [251] = {.lex_state = 39, .external_lex_state = 2}, - [252] = {.lex_state = 39, .external_lex_state = 6}, + [250] = {.lex_state = 39, .external_lex_state = 2}, + [251] = {.lex_state = 20, .external_lex_state = 2}, + [252] = {.lex_state = 39, .external_lex_state = 2}, [253] = {.lex_state = 39, .external_lex_state = 2}, - [254] = {.lex_state = 39, .external_lex_state = 2}, - [255] = {.lex_state = 39, .external_lex_state = 2}, + [254] = {.lex_state = 20, .external_lex_state = 2}, + [255] = {.lex_state = 20, .external_lex_state = 2}, [256] = {.lex_state = 20, .external_lex_state = 2}, [257] = {.lex_state = 20, .external_lex_state = 2}, - [258] = {.lex_state = 20, .external_lex_state = 2}, + [258] = {.lex_state = 39, .external_lex_state = 3}, [259] = {.lex_state = 20, .external_lex_state = 2}, [260] = {.lex_state = 20, .external_lex_state = 2}, [261] = {.lex_state = 20, .external_lex_state = 2}, [262] = {.lex_state = 20, .external_lex_state = 2}, [263] = {.lex_state = 20, .external_lex_state = 2}, [264] = {.lex_state = 20, .external_lex_state = 2}, - [265] = {.lex_state = 20, .external_lex_state = 2}, - [266] = {.lex_state = 39, .external_lex_state = 7}, - [267] = {.lex_state = 20, .external_lex_state = 2}, - [268] = {.lex_state = 20, .external_lex_state = 2}, + [265] = {.lex_state = 39, .external_lex_state = 3}, + [266] = {.lex_state = 20, .external_lex_state = 2}, + [267] = {.lex_state = 39, .external_lex_state = 2}, + [268] = {.lex_state = 39, .external_lex_state = 3}, [269] = {.lex_state = 20, .external_lex_state = 2}, - [270] = {.lex_state = 20, .external_lex_state = 2}, + [270] = {.lex_state = 39, .external_lex_state = 2}, [271] = {.lex_state = 20, .external_lex_state = 2}, - [272] = {.lex_state = 20, .external_lex_state = 2}, + [272] = {.lex_state = 39, .external_lex_state = 3}, [273] = {.lex_state = 20, .external_lex_state = 2}, [274] = {.lex_state = 20, .external_lex_state = 2}, [275] = {.lex_state = 20, .external_lex_state = 2}, - [276] = {.lex_state = 20, .external_lex_state = 2}, - [277] = {.lex_state = 20, .external_lex_state = 2}, - [278] = {.lex_state = 39, .external_lex_state = 2}, + [276] = {.lex_state = 39, .external_lex_state = 3}, + [277] = {.lex_state = 39, .external_lex_state = 2}, + [278] = {.lex_state = 20, .external_lex_state = 2}, [279] = {.lex_state = 20, .external_lex_state = 2}, [280] = {.lex_state = 20, .external_lex_state = 2}, [281] = {.lex_state = 20, .external_lex_state = 2}, [282] = {.lex_state = 20, .external_lex_state = 2}, [283] = {.lex_state = 20, .external_lex_state = 2}, - [284] = {.lex_state = 20, .external_lex_state = 2}, + [284] = {.lex_state = 39, .external_lex_state = 3}, [285] = {.lex_state = 20, .external_lex_state = 2}, - [286] = {.lex_state = 39, .external_lex_state = 7}, - [287] = {.lex_state = 20, .external_lex_state = 2}, - [288] = {.lex_state = 39, .external_lex_state = 7}, - [289] = {.lex_state = 39, .external_lex_state = 7}, + [286] = {.lex_state = 39, .external_lex_state = 2}, + [287] = {.lex_state = 39, .external_lex_state = 3}, + [288] = {.lex_state = 39, .external_lex_state = 3}, + [289] = {.lex_state = 20, .external_lex_state = 2}, [290] = {.lex_state = 20, .external_lex_state = 2}, - [291] = {.lex_state = 39, .external_lex_state = 7}, - [292] = {.lex_state = 39, .external_lex_state = 6}, - [293] = {.lex_state = 39, .external_lex_state = 7}, - [294] = {.lex_state = 20, .external_lex_state = 2}, - [295] = {.lex_state = 20, .external_lex_state = 2}, + [291] = {.lex_state = 20, .external_lex_state = 2}, + [292] = {.lex_state = 20, .external_lex_state = 2}, + [293] = {.lex_state = 20, .external_lex_state = 2}, + [294] = {.lex_state = 39, .external_lex_state = 3}, + [295] = {.lex_state = 39, .external_lex_state = 3}, [296] = {.lex_state = 20, .external_lex_state = 2}, - [297] = {.lex_state = 39, .external_lex_state = 2}, - [298] = {.lex_state = 20, .external_lex_state = 2}, - [299] = {.lex_state = 39, .external_lex_state = 7}, + [297] = {.lex_state = 20, .external_lex_state = 2}, + [298] = {.lex_state = 39, .external_lex_state = 3}, + [299] = {.lex_state = 20, .external_lex_state = 2}, [300] = {.lex_state = 20, .external_lex_state = 2}, [301] = {.lex_state = 20, .external_lex_state = 2}, - [302] = {.lex_state = 20, .external_lex_state = 2}, - [303] = {.lex_state = 20, .external_lex_state = 2}, - [304] = {.lex_state = 20, .external_lex_state = 2}, - [305] = {.lex_state = 20, .external_lex_state = 2}, + [302] = {.lex_state = 39, .external_lex_state = 3}, + [303] = {.lex_state = 39, .external_lex_state = 3}, + [304] = {.lex_state = 39, .external_lex_state = 3}, + [305] = {.lex_state = 39, .external_lex_state = 2}, [306] = {.lex_state = 20, .external_lex_state = 2}, [307] = {.lex_state = 20, .external_lex_state = 2}, - [308] = {.lex_state = 39, .external_lex_state = 2}, + [308] = {.lex_state = 20, .external_lex_state = 2}, [309] = {.lex_state = 20, .external_lex_state = 2}, - [310] = {.lex_state = 39, .external_lex_state = 3}, + [310] = {.lex_state = 39, .external_lex_state = 2}, [311] = {.lex_state = 39, .external_lex_state = 2}, - [312] = {.lex_state = 39, .external_lex_state = 2}, - [313] = {.lex_state = 39, .external_lex_state = 2}, - [314] = {.lex_state = 39, .external_lex_state = 2}, - [315] = {.lex_state = 39, .external_lex_state = 2}, - [316] = {.lex_state = 39, .external_lex_state = 3}, - [317] = {.lex_state = 39, .external_lex_state = 2}, + [312] = {.lex_state = 39, .external_lex_state = 3}, + [313] = {.lex_state = 20, .external_lex_state = 2}, + [314] = {.lex_state = 39, .external_lex_state = 3}, + [315] = {.lex_state = 39, .external_lex_state = 3}, + [316] = {.lex_state = 20, .external_lex_state = 2}, + [317] = {.lex_state = 20, .external_lex_state = 2}, [318] = {.lex_state = 39, .external_lex_state = 2}, - [319] = {.lex_state = 39, .external_lex_state = 2}, + [319] = {.lex_state = 39, .external_lex_state = 7}, [320] = {.lex_state = 39, .external_lex_state = 3}, - [321] = {.lex_state = 39, .external_lex_state = 2}, - [322] = {.lex_state = 39, .external_lex_state = 2}, - [323] = {.lex_state = 39, .external_lex_state = 3}, - [324] = {.lex_state = 39, .external_lex_state = 2}, - [325] = {.lex_state = 39, .external_lex_state = 3}, - [326] = {.lex_state = 39, .external_lex_state = 3}, - [327] = {.lex_state = 39, .external_lex_state = 3}, - [328] = {.lex_state = 39, .external_lex_state = 2}, + [321] = {.lex_state = 39, .external_lex_state = 3}, + [322] = {.lex_state = 20, .external_lex_state = 2}, + [323] = {.lex_state = 39, .external_lex_state = 2}, + [324] = {.lex_state = 39, .external_lex_state = 3}, + [325] = {.lex_state = 39, .external_lex_state = 7}, + [326] = {.lex_state = 20, .external_lex_state = 2}, + [327] = {.lex_state = 39, .external_lex_state = 2}, + [328] = {.lex_state = 39, .external_lex_state = 3}, [329] = {.lex_state = 39, .external_lex_state = 2}, - [330] = {.lex_state = 39, .external_lex_state = 2}, - [331] = {.lex_state = 39, .external_lex_state = 2}, - [332] = {.lex_state = 39, .external_lex_state = 2}, - [333] = {.lex_state = 39, .external_lex_state = 2}, - [334] = {.lex_state = 39, .external_lex_state = 3}, - [335] = {.lex_state = 39, .external_lex_state = 2}, - [336] = {.lex_state = 39, .external_lex_state = 2}, - [337] = {.lex_state = 39, .external_lex_state = 3}, - [338] = {.lex_state = 39, .external_lex_state = 2}, + [330] = {.lex_state = 20, .external_lex_state = 2}, + [331] = {.lex_state = 39, .external_lex_state = 3}, + [332] = {.lex_state = 20, .external_lex_state = 2}, + [333] = {.lex_state = 20, .external_lex_state = 2}, + [334] = {.lex_state = 20, .external_lex_state = 2}, + [335] = {.lex_state = 39, .external_lex_state = 7}, + [336] = {.lex_state = 20, .external_lex_state = 2}, + [337] = {.lex_state = 39, .external_lex_state = 6}, + [338] = {.lex_state = 20, .external_lex_state = 2}, [339] = {.lex_state = 39, .external_lex_state = 3}, [340] = {.lex_state = 39, .external_lex_state = 2}, - [341] = {.lex_state = 39, .external_lex_state = 3}, - [342] = {.lex_state = 39, .external_lex_state = 3}, - [343] = {.lex_state = 39, .external_lex_state = 2}, - [344] = {.lex_state = 39, .external_lex_state = 2}, - [345] = {.lex_state = 39, .external_lex_state = 2}, - [346] = {.lex_state = 39, .external_lex_state = 2}, + [341] = {.lex_state = 39, .external_lex_state = 6}, + [342] = {.lex_state = 39, .external_lex_state = 7}, + [343] = {.lex_state = 39, .external_lex_state = 7}, + [344] = {.lex_state = 39, .external_lex_state = 3}, + [345] = {.lex_state = 39, .external_lex_state = 7}, + [346] = {.lex_state = 39, .external_lex_state = 7}, [347] = {.lex_state = 39, .external_lex_state = 2}, - [348] = {.lex_state = 39, .external_lex_state = 2}, + [348] = {.lex_state = 39, .external_lex_state = 7}, [349] = {.lex_state = 39, .external_lex_state = 2}, - [350] = {.lex_state = 39, .external_lex_state = 3}, - [351] = {.lex_state = 39, .external_lex_state = 3}, - [352] = {.lex_state = 39, .external_lex_state = 2}, + [350] = {.lex_state = 39, .external_lex_state = 2}, + [351] = {.lex_state = 39, .external_lex_state = 2}, + [352] = {.lex_state = 20, .external_lex_state = 2}, [353] = {.lex_state = 39, .external_lex_state = 2}, - [354] = {.lex_state = 39, .external_lex_state = 2}, - [355] = {.lex_state = 39, .external_lex_state = 3}, - [356] = {.lex_state = 39, .external_lex_state = 3}, - [357] = {.lex_state = 39, .external_lex_state = 3}, - [358] = {.lex_state = 39, .external_lex_state = 2}, - [359] = {.lex_state = 39, .external_lex_state = 3}, - [360] = {.lex_state = 39, .external_lex_state = 3}, - [361] = {.lex_state = 39, .external_lex_state = 3}, - [362] = {.lex_state = 39, .external_lex_state = 3}, - [363] = {.lex_state = 39, .external_lex_state = 3}, - [364] = {.lex_state = 39, .external_lex_state = 3}, - [365] = {.lex_state = 39, .external_lex_state = 3}, - [366] = {.lex_state = 39, .external_lex_state = 3}, - [367] = {.lex_state = 39, .external_lex_state = 3}, + [354] = {.lex_state = 20, .external_lex_state = 2}, + [355] = {.lex_state = 39, .external_lex_state = 2}, + [356] = {.lex_state = 39, .external_lex_state = 2}, + [357] = {.lex_state = 39, .external_lex_state = 2}, + [358] = {.lex_state = 39, .external_lex_state = 3}, + [359] = {.lex_state = 39, .external_lex_state = 2}, + [360] = {.lex_state = 39, .external_lex_state = 7}, + [361] = {.lex_state = 39, .external_lex_state = 7}, + [362] = {.lex_state = 20, .external_lex_state = 2}, + [363] = {.lex_state = 39, .external_lex_state = 7}, + [364] = {.lex_state = 39, .external_lex_state = 6}, + [365] = {.lex_state = 39, .external_lex_state = 2}, + [366] = {.lex_state = 39, .external_lex_state = 2}, + [367] = {.lex_state = 39, .external_lex_state = 2}, [368] = {.lex_state = 39, .external_lex_state = 2}, - [369] = {.lex_state = 39, .external_lex_state = 3}, - [370] = {.lex_state = 39, .external_lex_state = 3}, - [371] = {.lex_state = 39, .external_lex_state = 3}, + [369] = {.lex_state = 39, .external_lex_state = 2}, + [370] = {.lex_state = 39, .external_lex_state = 2}, + [371] = {.lex_state = 39, .external_lex_state = 2}, [372] = {.lex_state = 39, .external_lex_state = 2}, - [373] = {.lex_state = 39, .external_lex_state = 3}, - [374] = {.lex_state = 39, .external_lex_state = 2}, + [373] = {.lex_state = 39, .external_lex_state = 2}, + [374] = {.lex_state = 20, .external_lex_state = 2}, [375] = {.lex_state = 39, .external_lex_state = 2}, - [376] = {.lex_state = 39, .external_lex_state = 2}, - [377] = {.lex_state = 39, .external_lex_state = 3}, + [376] = {.lex_state = 39, .external_lex_state = 7}, + [377] = {.lex_state = 39, .external_lex_state = 2}, [378] = {.lex_state = 39, .external_lex_state = 2}, - [379] = {.lex_state = 39, .external_lex_state = 3}, - [380] = {.lex_state = 39, .external_lex_state = 3}, - [381] = {.lex_state = 39, .external_lex_state = 3}, + [379] = {.lex_state = 39, .external_lex_state = 7}, + [380] = {.lex_state = 39, .external_lex_state = 2}, + [381] = {.lex_state = 39, .external_lex_state = 7}, [382] = {.lex_state = 39, .external_lex_state = 2}, - [383] = {.lex_state = 39, .external_lex_state = 3}, - [384] = {.lex_state = 39, .external_lex_state = 3}, + [383] = {.lex_state = 20, .external_lex_state = 2}, + [384] = {.lex_state = 39, .external_lex_state = 2}, [385] = {.lex_state = 39, .external_lex_state = 2}, [386] = {.lex_state = 39, .external_lex_state = 2}, - [387] = {.lex_state = 39, .external_lex_state = 3}, + [387] = {.lex_state = 39, .external_lex_state = 2}, [388] = {.lex_state = 39, .external_lex_state = 2}, - [389] = {.lex_state = 39, .external_lex_state = 3}, - [390] = {.lex_state = 39, .external_lex_state = 3}, - [391] = {.lex_state = 39, .external_lex_state = 2}, + [389] = {.lex_state = 39, .external_lex_state = 2}, + [390] = {.lex_state = 20, .external_lex_state = 2}, + [391] = {.lex_state = 20, .external_lex_state = 2}, [392] = {.lex_state = 39, .external_lex_state = 3}, [393] = {.lex_state = 39, .external_lex_state = 3}, - [394] = {.lex_state = 39, .external_lex_state = 3}, + [394] = {.lex_state = 39, .external_lex_state = 2}, [395] = {.lex_state = 39, .external_lex_state = 2}, [396] = {.lex_state = 39, .external_lex_state = 2}, [397] = {.lex_state = 39, .external_lex_state = 2}, @@ -8282,46 +8213,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [403] = {.lex_state = 39, .external_lex_state = 2}, [404] = {.lex_state = 39, .external_lex_state = 2}, [405] = {.lex_state = 39, .external_lex_state = 2}, - [406] = {.lex_state = 39, .external_lex_state = 2}, + [406] = {.lex_state = 39, .external_lex_state = 3}, [407] = {.lex_state = 39, .external_lex_state = 2}, [408] = {.lex_state = 39, .external_lex_state = 2}, - [409] = {.lex_state = 39, .external_lex_state = 2}, - [410] = {.lex_state = 39, .external_lex_state = 2}, - [411] = {.lex_state = 39, .external_lex_state = 2}, + [409] = {.lex_state = 39, .external_lex_state = 3}, + [410] = {.lex_state = 39, .external_lex_state = 3}, + [411] = {.lex_state = 39, .external_lex_state = 3}, [412] = {.lex_state = 39, .external_lex_state = 2}, - [413] = {.lex_state = 39, .external_lex_state = 2}, + [413] = {.lex_state = 39, .external_lex_state = 3}, [414] = {.lex_state = 39, .external_lex_state = 2}, - [415] = {.lex_state = 39, .external_lex_state = 2}, - [416] = {.lex_state = 39, .external_lex_state = 2}, - [417] = {.lex_state = 39, .external_lex_state = 2}, + [415] = {.lex_state = 39, .external_lex_state = 3}, + [416] = {.lex_state = 39, .external_lex_state = 3}, + [417] = {.lex_state = 39, .external_lex_state = 3}, [418] = {.lex_state = 39, .external_lex_state = 2}, [419] = {.lex_state = 39, .external_lex_state = 2}, [420] = {.lex_state = 39, .external_lex_state = 2}, [421] = {.lex_state = 39, .external_lex_state = 2}, [422] = {.lex_state = 39, .external_lex_state = 2}, - [423] = {.lex_state = 39, .external_lex_state = 2}, - [424] = {.lex_state = 39, .external_lex_state = 2}, - [425] = {.lex_state = 39, .external_lex_state = 2}, - [426] = {.lex_state = 39, .external_lex_state = 2}, + [423] = {.lex_state = 39, .external_lex_state = 3}, + [424] = {.lex_state = 39, .external_lex_state = 3}, + [425] = {.lex_state = 39, .external_lex_state = 3}, + [426] = {.lex_state = 39, .external_lex_state = 3}, [427] = {.lex_state = 39, .external_lex_state = 2}, - [428] = {.lex_state = 39, .external_lex_state = 2}, - [429] = {.lex_state = 39, .external_lex_state = 2}, - [430] = {.lex_state = 39, .external_lex_state = 2}, - [431] = {.lex_state = 39, .external_lex_state = 2}, - [432] = {.lex_state = 39, .external_lex_state = 2}, + [428] = {.lex_state = 39, .external_lex_state = 3}, + [429] = {.lex_state = 39, .external_lex_state = 3}, + [430] = {.lex_state = 39, .external_lex_state = 3}, + [431] = {.lex_state = 39, .external_lex_state = 3}, + [432] = {.lex_state = 39, .external_lex_state = 3}, [433] = {.lex_state = 39, .external_lex_state = 2}, [434] = {.lex_state = 39, .external_lex_state = 2}, - [435] = {.lex_state = 39, .external_lex_state = 2}, + [435] = {.lex_state = 39, .external_lex_state = 3}, [436] = {.lex_state = 39, .external_lex_state = 2}, [437] = {.lex_state = 39, .external_lex_state = 2}, - [438] = {.lex_state = 39, .external_lex_state = 2}, - [439] = {.lex_state = 39, .external_lex_state = 2}, - [440] = {.lex_state = 39, .external_lex_state = 2}, + [438] = {.lex_state = 39, .external_lex_state = 3}, + [439] = {.lex_state = 39, .external_lex_state = 3}, + [440] = {.lex_state = 39, .external_lex_state = 3}, [441] = {.lex_state = 39, .external_lex_state = 2}, [442] = {.lex_state = 39, .external_lex_state = 2}, - [443] = {.lex_state = 39, .external_lex_state = 2}, + [443] = {.lex_state = 39, .external_lex_state = 3}, [444] = {.lex_state = 39, .external_lex_state = 2}, - [445] = {.lex_state = 39, .external_lex_state = 2}, + [445] = {.lex_state = 39, .external_lex_state = 3}, [446] = {.lex_state = 39, .external_lex_state = 2}, [447] = {.lex_state = 39, .external_lex_state = 2}, [448] = {.lex_state = 39, .external_lex_state = 2}, @@ -8363,7 +8294,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [484] = {.lex_state = 39, .external_lex_state = 2}, [485] = {.lex_state = 39, .external_lex_state = 2}, [486] = {.lex_state = 39, .external_lex_state = 2}, - [487] = {.lex_state = 39, .external_lex_state = 2}, + [487] = {.lex_state = 39, .external_lex_state = 3}, [488] = {.lex_state = 39, .external_lex_state = 2}, [489] = {.lex_state = 39, .external_lex_state = 2}, [490] = {.lex_state = 39, .external_lex_state = 2}, @@ -8378,34 +8309,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [499] = {.lex_state = 39, .external_lex_state = 2}, [500] = {.lex_state = 39, .external_lex_state = 2}, [501] = {.lex_state = 39, .external_lex_state = 2}, - [502] = {.lex_state = 39, .external_lex_state = 2}, + [502] = {.lex_state = 39, .external_lex_state = 3}, [503] = {.lex_state = 39, .external_lex_state = 2}, [504] = {.lex_state = 39, .external_lex_state = 2}, [505] = {.lex_state = 39, .external_lex_state = 2}, [506] = {.lex_state = 39, .external_lex_state = 2}, - [507] = {.lex_state = 39, .external_lex_state = 2}, + [507] = {.lex_state = 39, .external_lex_state = 3}, [508] = {.lex_state = 39, .external_lex_state = 2}, [509] = {.lex_state = 39, .external_lex_state = 2}, [510] = {.lex_state = 39, .external_lex_state = 2}, [511] = {.lex_state = 39, .external_lex_state = 2}, [512] = {.lex_state = 39, .external_lex_state = 2}, [513] = {.lex_state = 39, .external_lex_state = 2}, - [514] = {.lex_state = 39, .external_lex_state = 2}, + [514] = {.lex_state = 39, .external_lex_state = 3}, [515] = {.lex_state = 39, .external_lex_state = 2}, - [516] = {.lex_state = 39, .external_lex_state = 2}, - [517] = {.lex_state = 39, .external_lex_state = 2}, - [518] = {.lex_state = 39, .external_lex_state = 2}, + [516] = {.lex_state = 39, .external_lex_state = 3}, + [517] = {.lex_state = 39, .external_lex_state = 3}, + [518] = {.lex_state = 39, .external_lex_state = 3}, [519] = {.lex_state = 39, .external_lex_state = 2}, - [520] = {.lex_state = 39, .external_lex_state = 2}, - [521] = {.lex_state = 39, .external_lex_state = 2}, + [520] = {.lex_state = 39, .external_lex_state = 3}, + [521] = {.lex_state = 39, .external_lex_state = 3}, [522] = {.lex_state = 39, .external_lex_state = 2}, [523] = {.lex_state = 39, .external_lex_state = 2}, [524] = {.lex_state = 39, .external_lex_state = 2}, - [525] = {.lex_state = 39, .external_lex_state = 3}, - [526] = {.lex_state = 39, .external_lex_state = 3}, - [527] = {.lex_state = 39, .external_lex_state = 3}, + [525] = {.lex_state = 39, .external_lex_state = 2}, + [526] = {.lex_state = 39, .external_lex_state = 2}, + [527] = {.lex_state = 39, .external_lex_state = 2}, [528] = {.lex_state = 39, .external_lex_state = 3}, - [529] = {.lex_state = 39, .external_lex_state = 2}, + [529] = {.lex_state = 39, .external_lex_state = 3}, [530] = {.lex_state = 39, .external_lex_state = 2}, [531] = {.lex_state = 39, .external_lex_state = 2}, [532] = {.lex_state = 39, .external_lex_state = 2}, @@ -8466,7 +8397,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [587] = {.lex_state = 39, .external_lex_state = 2}, [588] = {.lex_state = 39, .external_lex_state = 2}, [589] = {.lex_state = 39, .external_lex_state = 2}, - [590] = {.lex_state = 39, .external_lex_state = 3}, + [590] = {.lex_state = 39, .external_lex_state = 2}, [591] = {.lex_state = 39, .external_lex_state = 2}, [592] = {.lex_state = 39, .external_lex_state = 2}, [593] = {.lex_state = 39, .external_lex_state = 2}, @@ -8483,19 +8414,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [604] = {.lex_state = 39, .external_lex_state = 2}, [605] = {.lex_state = 39, .external_lex_state = 2}, [606] = {.lex_state = 39, .external_lex_state = 2}, - [607] = {.lex_state = 39, .external_lex_state = 2}, + [607] = {.lex_state = 39, .external_lex_state = 3}, [608] = {.lex_state = 39, .external_lex_state = 2}, [609] = {.lex_state = 39, .external_lex_state = 2}, [610] = {.lex_state = 39, .external_lex_state = 2}, [611] = {.lex_state = 39, .external_lex_state = 2}, [612] = {.lex_state = 39, .external_lex_state = 2}, - [613] = {.lex_state = 39, .external_lex_state = 3}, - [614] = {.lex_state = 39, .external_lex_state = 3}, + [613] = {.lex_state = 39, .external_lex_state = 2}, + [614] = {.lex_state = 39, .external_lex_state = 2}, [615] = {.lex_state = 39, .external_lex_state = 2}, [616] = {.lex_state = 39, .external_lex_state = 2}, [617] = {.lex_state = 39, .external_lex_state = 2}, [618] = {.lex_state = 39, .external_lex_state = 2}, - [619] = {.lex_state = 39, .external_lex_state = 3}, + [619] = {.lex_state = 39, .external_lex_state = 2}, [620] = {.lex_state = 39, .external_lex_state = 2}, [621] = {.lex_state = 39, .external_lex_state = 2}, [622] = {.lex_state = 39, .external_lex_state = 2}, @@ -8506,8 +8437,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [627] = {.lex_state = 39, .external_lex_state = 2}, [628] = {.lex_state = 39, .external_lex_state = 2}, [629] = {.lex_state = 39, .external_lex_state = 2}, - [630] = {.lex_state = 39, .external_lex_state = 3}, - [631] = {.lex_state = 39, .external_lex_state = 3}, + [630] = {.lex_state = 39, .external_lex_state = 2}, + [631] = {.lex_state = 39, .external_lex_state = 2}, [632] = {.lex_state = 39, .external_lex_state = 2}, [633] = {.lex_state = 39, .external_lex_state = 2}, [634] = {.lex_state = 39, .external_lex_state = 2}, @@ -8515,19 +8446,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [636] = {.lex_state = 39, .external_lex_state = 2}, [637] = {.lex_state = 39, .external_lex_state = 2}, [638] = {.lex_state = 39, .external_lex_state = 2}, - [639] = {.lex_state = 39, .external_lex_state = 3}, + [639] = {.lex_state = 39, .external_lex_state = 2}, [640] = {.lex_state = 39, .external_lex_state = 2}, [641] = {.lex_state = 39, .external_lex_state = 2}, [642] = {.lex_state = 39, .external_lex_state = 2}, [643] = {.lex_state = 39, .external_lex_state = 2}, [644] = {.lex_state = 39, .external_lex_state = 2}, - [645] = {.lex_state = 39, .external_lex_state = 3}, + [645] = {.lex_state = 39, .external_lex_state = 2}, [646] = {.lex_state = 39, .external_lex_state = 2}, [647] = {.lex_state = 39, .external_lex_state = 2}, [648] = {.lex_state = 39, .external_lex_state = 2}, [649] = {.lex_state = 39, .external_lex_state = 2}, - [650] = {.lex_state = 39, .external_lex_state = 3}, - [651] = {.lex_state = 39, .external_lex_state = 3}, + [650] = {.lex_state = 39, .external_lex_state = 2}, + [651] = {.lex_state = 39, .external_lex_state = 2}, [652] = {.lex_state = 39, .external_lex_state = 2}, [653] = {.lex_state = 39, .external_lex_state = 2}, [654] = {.lex_state = 39, .external_lex_state = 2}, @@ -8541,18 +8472,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [662] = {.lex_state = 39, .external_lex_state = 2}, [663] = {.lex_state = 39, .external_lex_state = 2}, [664] = {.lex_state = 39, .external_lex_state = 2}, - [665] = {.lex_state = 39, .external_lex_state = 2}, + [665] = {.lex_state = 39, .external_lex_state = 3}, [666] = {.lex_state = 39, .external_lex_state = 2}, [667] = {.lex_state = 39, .external_lex_state = 2}, [668] = {.lex_state = 39, .external_lex_state = 2}, [669] = {.lex_state = 39, .external_lex_state = 2}, - [670] = {.lex_state = 39, .external_lex_state = 3}, - [671] = {.lex_state = 39, .external_lex_state = 3}, - [672] = {.lex_state = 39, .external_lex_state = 3}, - [673] = {.lex_state = 39, .external_lex_state = 3}, + [670] = {.lex_state = 39, .external_lex_state = 2}, + [671] = {.lex_state = 39, .external_lex_state = 2}, + [672] = {.lex_state = 39, .external_lex_state = 2}, + [673] = {.lex_state = 39, .external_lex_state = 2}, [674] = {.lex_state = 39, .external_lex_state = 2}, [675] = {.lex_state = 39, .external_lex_state = 2}, - [676] = {.lex_state = 39, .external_lex_state = 3}, + [676] = {.lex_state = 39, .external_lex_state = 2}, [677] = {.lex_state = 39, .external_lex_state = 2}, [678] = {.lex_state = 39, .external_lex_state = 2}, [679] = {.lex_state = 39, .external_lex_state = 2}, @@ -8610,7 +8541,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [731] = {.lex_state = 39, .external_lex_state = 2}, [732] = {.lex_state = 39, .external_lex_state = 2}, [733] = {.lex_state = 39, .external_lex_state = 2}, - [734] = {.lex_state = 39, .external_lex_state = 2}, + [734] = {.lex_state = 39, .external_lex_state = 3}, [735] = {.lex_state = 39, .external_lex_state = 2}, [736] = {.lex_state = 39, .external_lex_state = 2}, [737] = {.lex_state = 39, .external_lex_state = 2}, @@ -8649,13 +8580,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [770] = {.lex_state = 39, .external_lex_state = 2}, [771] = {.lex_state = 39, .external_lex_state = 2}, [772] = {.lex_state = 39, .external_lex_state = 2}, - [773] = {.lex_state = 39, .external_lex_state = 2}, + [773] = {.lex_state = 39, .external_lex_state = 3}, [774] = {.lex_state = 39, .external_lex_state = 2}, - [775] = {.lex_state = 39, .external_lex_state = 2}, - [776] = {.lex_state = 39, .external_lex_state = 2}, - [777] = {.lex_state = 39, .external_lex_state = 2}, + [775] = {.lex_state = 39, .external_lex_state = 3}, + [776] = {.lex_state = 39, .external_lex_state = 3}, + [777] = {.lex_state = 39, .external_lex_state = 3}, [778] = {.lex_state = 39, .external_lex_state = 2}, - [779] = {.lex_state = 39, .external_lex_state = 2}, + [779] = {.lex_state = 39, .external_lex_state = 3}, [780] = {.lex_state = 39, .external_lex_state = 2}, [781] = {.lex_state = 39, .external_lex_state = 2}, [782] = {.lex_state = 39, .external_lex_state = 2}, @@ -8666,8 +8597,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [787] = {.lex_state = 39, .external_lex_state = 2}, [788] = {.lex_state = 39, .external_lex_state = 2}, [789] = {.lex_state = 39, .external_lex_state = 2}, - [790] = {.lex_state = 39, .external_lex_state = 2}, - [791] = {.lex_state = 39, .external_lex_state = 2}, + [790] = {.lex_state = 39, .external_lex_state = 3}, + [791] = {.lex_state = 39, .external_lex_state = 3}, [792] = {.lex_state = 39, .external_lex_state = 2}, [793] = {.lex_state = 39, .external_lex_state = 2}, [794] = {.lex_state = 39, .external_lex_state = 2}, @@ -8678,31 +8609,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [799] = {.lex_state = 39, .external_lex_state = 2}, [800] = {.lex_state = 39, .external_lex_state = 2}, [801] = {.lex_state = 39, .external_lex_state = 2}, - [802] = {.lex_state = 39, .external_lex_state = 2}, - [803] = {.lex_state = 39, .external_lex_state = 2}, + [802] = {.lex_state = 39, .external_lex_state = 3}, + [803] = {.lex_state = 39, .external_lex_state = 3}, [804] = {.lex_state = 39, .external_lex_state = 2}, [805] = {.lex_state = 39, .external_lex_state = 2}, [806] = {.lex_state = 39, .external_lex_state = 2}, - [807] = {.lex_state = 39, .external_lex_state = 2}, + [807] = {.lex_state = 39, .external_lex_state = 3}, [808] = {.lex_state = 39, .external_lex_state = 2}, [809] = {.lex_state = 39, .external_lex_state = 2}, [810] = {.lex_state = 39, .external_lex_state = 2}, - [811] = {.lex_state = 39, .external_lex_state = 2}, - [812] = {.lex_state = 39, .external_lex_state = 2}, - [813] = {.lex_state = 39, .external_lex_state = 2}, + [811] = {.lex_state = 39, .external_lex_state = 3}, + [812] = {.lex_state = 39, .external_lex_state = 3}, + [813] = {.lex_state = 39, .external_lex_state = 3}, [814] = {.lex_state = 39, .external_lex_state = 2}, [815] = {.lex_state = 39, .external_lex_state = 2}, [816] = {.lex_state = 39, .external_lex_state = 2}, [817] = {.lex_state = 39, .external_lex_state = 2}, [818] = {.lex_state = 39, .external_lex_state = 2}, - [819] = {.lex_state = 39, .external_lex_state = 2}, + [819] = {.lex_state = 39, .external_lex_state = 3}, [820] = {.lex_state = 39, .external_lex_state = 2}, [821] = {.lex_state = 39, .external_lex_state = 2}, [822] = {.lex_state = 39, .external_lex_state = 2}, [823] = {.lex_state = 39, .external_lex_state = 2}, [824] = {.lex_state = 39, .external_lex_state = 2}, - [825] = {.lex_state = 39, .external_lex_state = 2}, - [826] = {.lex_state = 39, .external_lex_state = 2}, + [825] = {.lex_state = 39, .external_lex_state = 3}, + [826] = {.lex_state = 39, .external_lex_state = 3}, [827] = {.lex_state = 39, .external_lex_state = 2}, [828] = {.lex_state = 39, .external_lex_state = 2}, [829] = {.lex_state = 39, .external_lex_state = 2}, @@ -8712,13 +8643,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [833] = {.lex_state = 39, .external_lex_state = 2}, [834] = {.lex_state = 39, .external_lex_state = 2}, [835] = {.lex_state = 39, .external_lex_state = 2}, - [836] = {.lex_state = 39, .external_lex_state = 2}, + [836] = {.lex_state = 39, .external_lex_state = 3}, [837] = {.lex_state = 39, .external_lex_state = 2}, [838] = {.lex_state = 39, .external_lex_state = 2}, - [839] = {.lex_state = 39, .external_lex_state = 2}, + [839] = {.lex_state = 39, .external_lex_state = 3}, [840] = {.lex_state = 39, .external_lex_state = 2}, [841] = {.lex_state = 39, .external_lex_state = 2}, - [842] = {.lex_state = 39, .external_lex_state = 2}, + [842] = {.lex_state = 39, .external_lex_state = 3}, [843] = {.lex_state = 39, .external_lex_state = 2}, [844] = {.lex_state = 39, .external_lex_state = 2}, [845] = {.lex_state = 39, .external_lex_state = 2}, @@ -8735,10 +8666,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [856] = {.lex_state = 39, .external_lex_state = 2}, [857] = {.lex_state = 39, .external_lex_state = 2}, [858] = {.lex_state = 39, .external_lex_state = 2}, - [859] = {.lex_state = 39, .external_lex_state = 2}, + [859] = {.lex_state = 39, .external_lex_state = 3}, [860] = {.lex_state = 39, .external_lex_state = 2}, [861] = {.lex_state = 39, .external_lex_state = 2}, - [862] = {.lex_state = 39, .external_lex_state = 2}, + [862] = {.lex_state = 39, .external_lex_state = 3}, [863] = {.lex_state = 39, .external_lex_state = 2}, [864] = {.lex_state = 39, .external_lex_state = 2}, [865] = {.lex_state = 39, .external_lex_state = 2}, @@ -8748,22 +8679,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [869] = {.lex_state = 39, .external_lex_state = 2}, [870] = {.lex_state = 39, .external_lex_state = 2}, [871] = {.lex_state = 39, .external_lex_state = 2}, - [872] = {.lex_state = 39, .external_lex_state = 2}, - [873] = {.lex_state = 39, .external_lex_state = 2}, + [872] = {.lex_state = 39, .external_lex_state = 3}, + [873] = {.lex_state = 39, .external_lex_state = 3}, [874] = {.lex_state = 39, .external_lex_state = 2}, [875] = {.lex_state = 39, .external_lex_state = 2}, [876] = {.lex_state = 39, .external_lex_state = 2}, [877] = {.lex_state = 39, .external_lex_state = 2}, [878] = {.lex_state = 39, .external_lex_state = 2}, [879] = {.lex_state = 39, .external_lex_state = 2}, - [880] = {.lex_state = 39, .external_lex_state = 2}, + [880] = {.lex_state = 39, .external_lex_state = 3}, [881] = {.lex_state = 39, .external_lex_state = 2}, [882] = {.lex_state = 39, .external_lex_state = 2}, [883] = {.lex_state = 39, .external_lex_state = 2}, [884] = {.lex_state = 39, .external_lex_state = 2}, [885] = {.lex_state = 39, .external_lex_state = 2}, - [886] = {.lex_state = 39, .external_lex_state = 2}, - [887] = {.lex_state = 39, .external_lex_state = 2}, + [886] = {.lex_state = 39, .external_lex_state = 3}, + [887] = {.lex_state = 39, .external_lex_state = 3}, [888] = {.lex_state = 39, .external_lex_state = 2}, [889] = {.lex_state = 39, .external_lex_state = 2}, [890] = {.lex_state = 39, .external_lex_state = 2}, @@ -8771,13 +8702,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [892] = {.lex_state = 39, .external_lex_state = 2}, [893] = {.lex_state = 39, .external_lex_state = 2}, [894] = {.lex_state = 39, .external_lex_state = 2}, - [895] = {.lex_state = 39, .external_lex_state = 2}, - [896] = {.lex_state = 39, .external_lex_state = 2}, - [897] = {.lex_state = 39, .external_lex_state = 2}, - [898] = {.lex_state = 39, .external_lex_state = 2}, - [899] = {.lex_state = 39, .external_lex_state = 2}, - [900] = {.lex_state = 39, .external_lex_state = 2}, - [901] = {.lex_state = 39, .external_lex_state = 2}, + [895] = {.lex_state = 39, .external_lex_state = 3}, + [896] = {.lex_state = 39, .external_lex_state = 3}, + [897] = {.lex_state = 39, .external_lex_state = 3}, + [898] = {.lex_state = 39, .external_lex_state = 3}, + [899] = {.lex_state = 39, .external_lex_state = 3}, + [900] = {.lex_state = 39, .external_lex_state = 3}, + [901] = {.lex_state = 39, .external_lex_state = 3}, [902] = {.lex_state = 39, .external_lex_state = 2}, [903] = {.lex_state = 39, .external_lex_state = 2}, [904] = {.lex_state = 39, .external_lex_state = 2}, @@ -8788,126 +8719,126 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [909] = {.lex_state = 39, .external_lex_state = 2}, [910] = {.lex_state = 39, .external_lex_state = 2}, [911] = {.lex_state = 39, .external_lex_state = 2}, - [912] = {.lex_state = 39, .external_lex_state = 3}, + [912] = {.lex_state = 39, .external_lex_state = 2}, [913] = {.lex_state = 39, .external_lex_state = 2}, [914] = {.lex_state = 39, .external_lex_state = 2}, [915] = {.lex_state = 39, .external_lex_state = 2}, - [916] = {.lex_state = 39, .external_lex_state = 3}, - [917] = {.lex_state = 39, .external_lex_state = 3}, + [916] = {.lex_state = 39, .external_lex_state = 2}, + [917] = {.lex_state = 39, .external_lex_state = 2}, [918] = {.lex_state = 39, .external_lex_state = 2}, - [919] = {.lex_state = 39, .external_lex_state = 3}, + [919] = {.lex_state = 39, .external_lex_state = 2}, [920] = {.lex_state = 39, .external_lex_state = 2}, [921] = {.lex_state = 39, .external_lex_state = 2}, [922] = {.lex_state = 39, .external_lex_state = 2}, - [923] = {.lex_state = 39, .external_lex_state = 3}, - [924] = {.lex_state = 39, .external_lex_state = 3}, + [923] = {.lex_state = 39, .external_lex_state = 2}, + [924] = {.lex_state = 39, .external_lex_state = 2}, [925] = {.lex_state = 39, .external_lex_state = 2}, [926] = {.lex_state = 39, .external_lex_state = 2}, [927] = {.lex_state = 39, .external_lex_state = 2}, [928] = {.lex_state = 39, .external_lex_state = 2}, [929] = {.lex_state = 39, .external_lex_state = 2}, [930] = {.lex_state = 39, .external_lex_state = 2}, - [931] = {.lex_state = 39, .external_lex_state = 3}, - [932] = {.lex_state = 39, .external_lex_state = 3}, - [933] = {.lex_state = 39, .external_lex_state = 3}, - [934] = {.lex_state = 39, .external_lex_state = 3}, - [935] = {.lex_state = 39, .external_lex_state = 3}, - [936] = {.lex_state = 39, .external_lex_state = 3}, - [937] = {.lex_state = 39, .external_lex_state = 3}, - [938] = {.lex_state = 39, .external_lex_state = 3}, - [939] = {.lex_state = 39, .external_lex_state = 3}, - [940] = {.lex_state = 39, .external_lex_state = 3}, - [941] = {.lex_state = 39, .external_lex_state = 3}, - [942] = {.lex_state = 39, .external_lex_state = 3}, - [943] = {.lex_state = 39, .external_lex_state = 3}, + [931] = {.lex_state = 39, .external_lex_state = 2}, + [932] = {.lex_state = 39, .external_lex_state = 2}, + [933] = {.lex_state = 39, .external_lex_state = 2}, + [934] = {.lex_state = 39, .external_lex_state = 2}, + [935] = {.lex_state = 39, .external_lex_state = 2}, + [936] = {.lex_state = 39, .external_lex_state = 2}, + [937] = {.lex_state = 39, .external_lex_state = 2}, + [938] = {.lex_state = 39, .external_lex_state = 2}, + [939] = {.lex_state = 39, .external_lex_state = 2}, + [940] = {.lex_state = 39, .external_lex_state = 2}, + [941] = {.lex_state = 39, .external_lex_state = 2}, + [942] = {.lex_state = 39, .external_lex_state = 2}, + [943] = {.lex_state = 39, .external_lex_state = 2}, [944] = {.lex_state = 39, .external_lex_state = 2}, - [945] = {.lex_state = 39, .external_lex_state = 3}, - [946] = {.lex_state = 39, .external_lex_state = 3}, - [947] = {.lex_state = 39, .external_lex_state = 3}, - [948] = {.lex_state = 39, .external_lex_state = 3}, - [949] = {.lex_state = 39, .external_lex_state = 3}, + [945] = {.lex_state = 39, .external_lex_state = 2}, + [946] = {.lex_state = 39, .external_lex_state = 2}, + [947] = {.lex_state = 39, .external_lex_state = 2}, + [948] = {.lex_state = 39, .external_lex_state = 2}, + [949] = {.lex_state = 39, .external_lex_state = 2}, [950] = {.lex_state = 39, .external_lex_state = 2}, - [951] = {.lex_state = 39, .external_lex_state = 3}, + [951] = {.lex_state = 39, .external_lex_state = 2}, [952] = {.lex_state = 39, .external_lex_state = 2}, [953] = {.lex_state = 39, .external_lex_state = 2}, - [954] = {.lex_state = 39, .external_lex_state = 3}, - [955] = {.lex_state = 39, .external_lex_state = 3}, - [956] = {.lex_state = 39, .external_lex_state = 3}, - [957] = {.lex_state = 39, .external_lex_state = 3}, - [958] = {.lex_state = 39, .external_lex_state = 3}, - [959] = {.lex_state = 39, .external_lex_state = 3}, + [954] = {.lex_state = 39, .external_lex_state = 2}, + [955] = {.lex_state = 39, .external_lex_state = 2}, + [956] = {.lex_state = 39, .external_lex_state = 2}, + [957] = {.lex_state = 39, .external_lex_state = 2}, + [958] = {.lex_state = 39, .external_lex_state = 2}, + [959] = {.lex_state = 39, .external_lex_state = 2}, [960] = {.lex_state = 39, .external_lex_state = 2}, [961] = {.lex_state = 39, .external_lex_state = 2}, - [962] = {.lex_state = 39, .external_lex_state = 3}, - [963] = {.lex_state = 39, .external_lex_state = 3}, + [962] = {.lex_state = 39, .external_lex_state = 2}, + [963] = {.lex_state = 39, .external_lex_state = 2}, [964] = {.lex_state = 39, .external_lex_state = 2}, [965] = {.lex_state = 39, .external_lex_state = 2}, [966] = {.lex_state = 39, .external_lex_state = 2}, - [967] = {.lex_state = 39, .external_lex_state = 3}, - [968] = {.lex_state = 39, .external_lex_state = 3}, - [969] = {.lex_state = 39, .external_lex_state = 3}, - [970] = {.lex_state = 39, .external_lex_state = 3}, - [971] = {.lex_state = 39, .external_lex_state = 3}, + [967] = {.lex_state = 39, .external_lex_state = 2}, + [968] = {.lex_state = 39, .external_lex_state = 2}, + [969] = {.lex_state = 39, .external_lex_state = 2}, + [970] = {.lex_state = 39, .external_lex_state = 2}, + [971] = {.lex_state = 39, .external_lex_state = 2}, [972] = {.lex_state = 39, .external_lex_state = 2}, [973] = {.lex_state = 39, .external_lex_state = 2}, [974] = {.lex_state = 39, .external_lex_state = 2}, [975] = {.lex_state = 39, .external_lex_state = 2}, [976] = {.lex_state = 39, .external_lex_state = 2}, - [977] = {.lex_state = 39, .external_lex_state = 3}, + [977] = {.lex_state = 39, .external_lex_state = 2}, [978] = {.lex_state = 39, .external_lex_state = 2}, [979] = {.lex_state = 39, .external_lex_state = 2}, - [980] = {.lex_state = 39, .external_lex_state = 3}, + [980] = {.lex_state = 39, .external_lex_state = 2}, [981] = {.lex_state = 39, .external_lex_state = 2}, [982] = {.lex_state = 39, .external_lex_state = 2}, - [983] = {.lex_state = 39, .external_lex_state = 3}, - [984] = {.lex_state = 39, .external_lex_state = 3}, + [983] = {.lex_state = 39, .external_lex_state = 2}, + [984] = {.lex_state = 39, .external_lex_state = 2}, [985] = {.lex_state = 39, .external_lex_state = 2}, - [986] = {.lex_state = 39, .external_lex_state = 3}, - [987] = {.lex_state = 39, .external_lex_state = 3}, - [988] = {.lex_state = 39, .external_lex_state = 3}, - [989] = {.lex_state = 39, .external_lex_state = 3}, - [990] = {.lex_state = 39, .external_lex_state = 3}, - [991] = {.lex_state = 39, .external_lex_state = 3}, - [992] = {.lex_state = 39, .external_lex_state = 3}, - [993] = {.lex_state = 39, .external_lex_state = 3}, - [994] = {.lex_state = 39, .external_lex_state = 3}, - [995] = {.lex_state = 39, .external_lex_state = 2}, - [996] = {.lex_state = 39, .external_lex_state = 3}, - [997] = {.lex_state = 39, .external_lex_state = 3}, - [998] = {.lex_state = 39, .external_lex_state = 2}, - [999] = {.lex_state = 39, .external_lex_state = 3}, - [1000] = {.lex_state = 39, .external_lex_state = 2}, - [1001] = {.lex_state = 39, .external_lex_state = 2}, - [1002] = {.lex_state = 39, .external_lex_state = 2}, - [1003] = {.lex_state = 39, .external_lex_state = 2}, - [1004] = {.lex_state = 39, .external_lex_state = 2}, - [1005] = {.lex_state = 39, .external_lex_state = 2}, - [1006] = {.lex_state = 39, .external_lex_state = 2}, - [1007] = {.lex_state = 39, .external_lex_state = 2}, - [1008] = {.lex_state = 39, .external_lex_state = 2}, - [1009] = {.lex_state = 39, .external_lex_state = 3}, - [1010] = {.lex_state = 39, .external_lex_state = 2}, - [1011] = {.lex_state = 39, .external_lex_state = 2}, - [1012] = {.lex_state = 39, .external_lex_state = 2}, - [1013] = {.lex_state = 39, .external_lex_state = 2}, - [1014] = {.lex_state = 39, .external_lex_state = 2}, - [1015] = {.lex_state = 39, .external_lex_state = 2}, - [1016] = {.lex_state = 39, .external_lex_state = 2}, - [1017] = {.lex_state = 39, .external_lex_state = 2}, - [1018] = {.lex_state = 39, .external_lex_state = 2}, - [1019] = {.lex_state = 39, .external_lex_state = 2}, - [1020] = {.lex_state = 39, .external_lex_state = 2}, - [1021] = {.lex_state = 39, .external_lex_state = 2}, + [986] = {.lex_state = 39, .external_lex_state = 2}, + [987] = {.lex_state = 39, .external_lex_state = 2}, + [988] = {.lex_state = 39, .external_lex_state = 2}, + [989] = {.lex_state = 39, .external_lex_state = 2}, + [990] = {.lex_state = 39, .external_lex_state = 2}, + [991] = {.lex_state = 39, .external_lex_state = 2}, + [992] = {.lex_state = 39, .external_lex_state = 2}, + [993] = {.lex_state = 39, .external_lex_state = 2}, + [994] = {.lex_state = 39, .external_lex_state = 5}, + [995] = {.lex_state = 39, .external_lex_state = 5}, + [996] = {.lex_state = 39, .external_lex_state = 8}, + [997] = {.lex_state = 39, .external_lex_state = 5}, + [998] = {.lex_state = 39, .external_lex_state = 5}, + [999] = {.lex_state = 39, .external_lex_state = 5}, + [1000] = {.lex_state = 39, .external_lex_state = 5}, + [1001] = {.lex_state = 39, .external_lex_state = 5}, + [1002] = {.lex_state = 39, .external_lex_state = 5}, + [1003] = {.lex_state = 39, .external_lex_state = 5}, + [1004] = {.lex_state = 39, .external_lex_state = 5}, + [1005] = {.lex_state = 39, .external_lex_state = 5}, + [1006] = {.lex_state = 39, .external_lex_state = 5}, + [1007] = {.lex_state = 39, .external_lex_state = 5}, + [1008] = {.lex_state = 39, .external_lex_state = 5}, + [1009] = {.lex_state = 39, .external_lex_state = 5}, + [1010] = {.lex_state = 39, .external_lex_state = 5}, + [1011] = {.lex_state = 39, .external_lex_state = 5}, + [1012] = {.lex_state = 39, .external_lex_state = 5}, + [1013] = {.lex_state = 39, .external_lex_state = 5}, + [1014] = {.lex_state = 39, .external_lex_state = 5}, + [1015] = {.lex_state = 39, .external_lex_state = 5}, + [1016] = {.lex_state = 39, .external_lex_state = 5}, + [1017] = {.lex_state = 39, .external_lex_state = 5}, + [1018] = {.lex_state = 39, .external_lex_state = 5}, + [1019] = {.lex_state = 39, .external_lex_state = 5}, + [1020] = {.lex_state = 39, .external_lex_state = 5}, + [1021] = {.lex_state = 39, .external_lex_state = 5}, [1022] = {.lex_state = 39, .external_lex_state = 5}, - [1023] = {.lex_state = 39, .external_lex_state = 8}, + [1023] = {.lex_state = 39, .external_lex_state = 5}, [1024] = {.lex_state = 39, .external_lex_state = 5}, [1025] = {.lex_state = 39, .external_lex_state = 5}, [1026] = {.lex_state = 39, .external_lex_state = 5}, [1027] = {.lex_state = 39, .external_lex_state = 5}, - [1028] = {.lex_state = 39, .external_lex_state = 5}, + [1028] = {.lex_state = 39, .external_lex_state = 9}, [1029] = {.lex_state = 39, .external_lex_state = 5}, [1030] = {.lex_state = 39, .external_lex_state = 5}, - [1031] = {.lex_state = 39, .external_lex_state = 9}, + [1031] = {.lex_state = 39, .external_lex_state = 5}, [1032] = {.lex_state = 39, .external_lex_state = 5}, [1033] = {.lex_state = 39, .external_lex_state = 5}, [1034] = {.lex_state = 39, .external_lex_state = 5}, @@ -8934,12 +8865,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1055] = {.lex_state = 39, .external_lex_state = 5}, [1056] = {.lex_state = 39, .external_lex_state = 5}, [1057] = {.lex_state = 39, .external_lex_state = 5}, - [1058] = {.lex_state = 39, .external_lex_state = 5}, + [1058] = {.lex_state = 39, .external_lex_state = 9}, [1059] = {.lex_state = 39, .external_lex_state = 5}, - [1060] = {.lex_state = 39, .external_lex_state = 5}, - [1061] = {.lex_state = 39, .external_lex_state = 5}, + [1060] = {.lex_state = 39, .external_lex_state = 3}, + [1061] = {.lex_state = 39, .external_lex_state = 2}, [1062] = {.lex_state = 39, .external_lex_state = 5}, - [1063] = {.lex_state = 39, .external_lex_state = 5}, + [1063] = {.lex_state = 39, .external_lex_state = 3}, [1064] = {.lex_state = 39, .external_lex_state = 5}, [1065] = {.lex_state = 39, .external_lex_state = 5}, [1066] = {.lex_state = 39, .external_lex_state = 5}, @@ -8950,7 +8881,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1071] = {.lex_state = 39, .external_lex_state = 5}, [1072] = {.lex_state = 39, .external_lex_state = 5}, [1073] = {.lex_state = 39, .external_lex_state = 5}, - [1074] = {.lex_state = 39, .external_lex_state = 5}, + [1074] = {.lex_state = 39, .external_lex_state = 2}, [1075] = {.lex_state = 39, .external_lex_state = 5}, [1076] = {.lex_state = 39, .external_lex_state = 5}, [1077] = {.lex_state = 39, .external_lex_state = 5}, @@ -8958,25 +8889,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1079] = {.lex_state = 39, .external_lex_state = 5}, [1080] = {.lex_state = 39, .external_lex_state = 5}, [1081] = {.lex_state = 39, .external_lex_state = 5}, - [1082] = {.lex_state = 39, .external_lex_state = 5}, - [1083] = {.lex_state = 39, .external_lex_state = 5}, + [1082] = {.lex_state = 39, .external_lex_state = 2}, + [1083] = {.lex_state = 39, .external_lex_state = 2}, [1084] = {.lex_state = 39, .external_lex_state = 5}, - [1085] = {.lex_state = 39, .external_lex_state = 9}, - [1086] = {.lex_state = 39, .external_lex_state = 5}, + [1085] = {.lex_state = 39, .external_lex_state = 5}, + [1086] = {.lex_state = 39, .external_lex_state = 2}, [1087] = {.lex_state = 39, .external_lex_state = 5}, - [1088] = {.lex_state = 39, .external_lex_state = 5}, + [1088] = {.lex_state = 39, .external_lex_state = 3}, [1089] = {.lex_state = 39, .external_lex_state = 5}, - [1090] = {.lex_state = 39, .external_lex_state = 3}, + [1090] = {.lex_state = 39, .external_lex_state = 5}, [1091] = {.lex_state = 39, .external_lex_state = 5}, [1092] = {.lex_state = 39, .external_lex_state = 5}, [1093] = {.lex_state = 39, .external_lex_state = 5}, [1094] = {.lex_state = 39, .external_lex_state = 5}, - [1095] = {.lex_state = 39, .external_lex_state = 3}, + [1095] = {.lex_state = 39, .external_lex_state = 5}, [1096] = {.lex_state = 39, .external_lex_state = 5}, - [1097] = {.lex_state = 39, .external_lex_state = 5}, - [1098] = {.lex_state = 39, .external_lex_state = 5}, + [1097] = {.lex_state = 39, .external_lex_state = 3}, + [1098] = {.lex_state = 39, .external_lex_state = 3}, [1099] = {.lex_state = 39, .external_lex_state = 5}, - [1100] = {.lex_state = 39, .external_lex_state = 3}, + [1100] = {.lex_state = 39, .external_lex_state = 5}, [1101] = {.lex_state = 39, .external_lex_state = 5}, [1102] = {.lex_state = 39, .external_lex_state = 5}, [1103] = {.lex_state = 39, .external_lex_state = 5}, @@ -8984,739 +8915,739 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1105] = {.lex_state = 39, .external_lex_state = 5}, [1106] = {.lex_state = 39, .external_lex_state = 5}, [1107] = {.lex_state = 39, .external_lex_state = 5}, - [1108] = {.lex_state = 39, .external_lex_state = 3}, + [1108] = {.lex_state = 39, .external_lex_state = 5}, [1109] = {.lex_state = 39, .external_lex_state = 5}, [1110] = {.lex_state = 39, .external_lex_state = 5}, [1111] = {.lex_state = 39, .external_lex_state = 5}, [1112] = {.lex_state = 39, .external_lex_state = 5}, [1113] = {.lex_state = 39, .external_lex_state = 5}, - [1114] = {.lex_state = 39, .external_lex_state = 3}, + [1114] = {.lex_state = 39, .external_lex_state = 5}, [1115] = {.lex_state = 39, .external_lex_state = 5}, [1116] = {.lex_state = 39, .external_lex_state = 5}, [1117] = {.lex_state = 39, .external_lex_state = 5}, [1118] = {.lex_state = 39, .external_lex_state = 5}, - [1119] = {.lex_state = 39, .external_lex_state = 2}, + [1119] = {.lex_state = 39, .external_lex_state = 5}, [1120] = {.lex_state = 39, .external_lex_state = 5}, [1121] = {.lex_state = 39, .external_lex_state = 5}, [1122] = {.lex_state = 39, .external_lex_state = 5}, - [1123] = {.lex_state = 39, .external_lex_state = 5}, - [1124] = {.lex_state = 39, .external_lex_state = 5}, - [1125] = {.lex_state = 39, .external_lex_state = 5}, - [1126] = {.lex_state = 39, .external_lex_state = 2}, - [1127] = {.lex_state = 39, .external_lex_state = 5}, - [1128] = {.lex_state = 39, .external_lex_state = 5}, + [1123] = {.lex_state = 39, .external_lex_state = 10}, + [1124] = {.lex_state = 39, .external_lex_state = 10}, + [1125] = {.lex_state = 39, .external_lex_state = 10}, + [1126] = {.lex_state = 39, .external_lex_state = 3}, + [1127] = {.lex_state = 39, .external_lex_state = 2}, + [1128] = {.lex_state = 39, .external_lex_state = 2}, [1129] = {.lex_state = 39, .external_lex_state = 2}, [1130] = {.lex_state = 39, .external_lex_state = 2}, - [1131] = {.lex_state = 39, .external_lex_state = 5}, - [1132] = {.lex_state = 39, .external_lex_state = 5}, - [1133] = {.lex_state = 39, .external_lex_state = 5}, - [1134] = {.lex_state = 39, .external_lex_state = 5}, - [1135] = {.lex_state = 39, .external_lex_state = 5}, - [1136] = {.lex_state = 39, .external_lex_state = 5}, - [1137] = {.lex_state = 39, .external_lex_state = 5}, - [1138] = {.lex_state = 39, .external_lex_state = 5}, - [1139] = {.lex_state = 39, .external_lex_state = 5}, - [1140] = {.lex_state = 39, .external_lex_state = 5}, - [1141] = {.lex_state = 39, .external_lex_state = 5}, - [1142] = {.lex_state = 39, .external_lex_state = 5}, - [1143] = {.lex_state = 39, .external_lex_state = 5}, - [1144] = {.lex_state = 39, .external_lex_state = 2}, - [1145] = {.lex_state = 39, .external_lex_state = 5}, - [1146] = {.lex_state = 39, .external_lex_state = 5}, - [1147] = {.lex_state = 39, .external_lex_state = 5}, - [1148] = {.lex_state = 39, .external_lex_state = 5}, - [1149] = {.lex_state = 39, .external_lex_state = 5}, - [1150] = {.lex_state = 39, .external_lex_state = 5}, - [1151] = {.lex_state = 39, .external_lex_state = 5}, - [1152] = {.lex_state = 39, .external_lex_state = 5}, - [1153] = {.lex_state = 39, .external_lex_state = 5}, - [1154] = {.lex_state = 39, .external_lex_state = 10}, - [1155] = {.lex_state = 39, .external_lex_state = 10}, + [1131] = {.lex_state = 39, .external_lex_state = 2}, + [1132] = {.lex_state = 39, .external_lex_state = 3}, + [1133] = {.lex_state = 39, .external_lex_state = 3}, + [1134] = {.lex_state = 39, .external_lex_state = 3}, + [1135] = {.lex_state = 39, .external_lex_state = 3}, + [1136] = {.lex_state = 39, .external_lex_state = 3}, + [1137] = {.lex_state = 39, .external_lex_state = 2}, + [1138] = {.lex_state = 39, .external_lex_state = 2}, + [1139] = {.lex_state = 39, .external_lex_state = 9}, + [1140] = {.lex_state = 39, .external_lex_state = 9}, + [1141] = {.lex_state = 39, .external_lex_state = 3}, + [1142] = {.lex_state = 39, .external_lex_state = 9}, + [1143] = {.lex_state = 39, .external_lex_state = 9}, + [1144] = {.lex_state = 39, .external_lex_state = 9}, + [1145] = {.lex_state = 39, .external_lex_state = 9}, + [1146] = {.lex_state = 39, .external_lex_state = 9}, + [1147] = {.lex_state = 39, .external_lex_state = 9}, + [1148] = {.lex_state = 39, .external_lex_state = 9}, + [1149] = {.lex_state = 39, .external_lex_state = 10}, + [1150] = {.lex_state = 39, .external_lex_state = 10}, + [1151] = {.lex_state = 39, .external_lex_state = 10}, + [1152] = {.lex_state = 39, .external_lex_state = 10}, + [1153] = {.lex_state = 39, .external_lex_state = 3}, + [1154] = {.lex_state = 39, .external_lex_state = 11}, + [1155] = {.lex_state = 39, .external_lex_state = 9}, [1156] = {.lex_state = 39, .external_lex_state = 10}, - [1157] = {.lex_state = 39, .external_lex_state = 3}, - [1158] = {.lex_state = 39, .external_lex_state = 3}, - [1159] = {.lex_state = 39, .external_lex_state = 3}, + [1157] = {.lex_state = 39, .external_lex_state = 10}, + [1158] = {.lex_state = 39, .external_lex_state = 10}, + [1159] = {.lex_state = 39, .external_lex_state = 11}, [1160] = {.lex_state = 39, .external_lex_state = 3}, - [1161] = {.lex_state = 39, .external_lex_state = 3}, - [1162] = {.lex_state = 39, .external_lex_state = 3}, - [1163] = {.lex_state = 39, .external_lex_state = 2}, - [1164] = {.lex_state = 39, .external_lex_state = 2}, - [1165] = {.lex_state = 39, .external_lex_state = 2}, - [1166] = {.lex_state = 39, .external_lex_state = 2}, - [1167] = {.lex_state = 39, .external_lex_state = 2}, - [1168] = {.lex_state = 39, .external_lex_state = 2}, - [1169] = {.lex_state = 39, .external_lex_state = 9}, + [1161] = {.lex_state = 39, .external_lex_state = 10}, + [1162] = {.lex_state = 39, .external_lex_state = 5}, + [1163] = {.lex_state = 39, .external_lex_state = 10}, + [1164] = {.lex_state = 39, .external_lex_state = 9}, + [1165] = {.lex_state = 39, .external_lex_state = 10}, + [1166] = {.lex_state = 39, .external_lex_state = 3}, + [1167] = {.lex_state = 39, .external_lex_state = 10}, + [1168] = {.lex_state = 39, .external_lex_state = 10}, + [1169] = {.lex_state = 39, .external_lex_state = 5}, [1170] = {.lex_state = 39, .external_lex_state = 2}, - [1171] = {.lex_state = 39, .external_lex_state = 9}, - [1172] = {.lex_state = 39, .external_lex_state = 9}, - [1173] = {.lex_state = 39, .external_lex_state = 9}, + [1171] = {.lex_state = 39, .external_lex_state = 10}, + [1172] = {.lex_state = 39, .external_lex_state = 10}, + [1173] = {.lex_state = 39, .external_lex_state = 10}, [1174] = {.lex_state = 39, .external_lex_state = 3}, - [1175] = {.lex_state = 39, .external_lex_state = 2}, - [1176] = {.lex_state = 39, .external_lex_state = 9}, - [1177] = {.lex_state = 39, .external_lex_state = 9}, - [1178] = {.lex_state = 39, .external_lex_state = 9}, - [1179] = {.lex_state = 39, .external_lex_state = 9}, - [1180] = {.lex_state = 39, .external_lex_state = 3}, - [1181] = {.lex_state = 39, .external_lex_state = 9}, - [1182] = {.lex_state = 39, .external_lex_state = 5}, + [1175] = {.lex_state = 39, .external_lex_state = 10}, + [1176] = {.lex_state = 39, .external_lex_state = 10}, + [1177] = {.lex_state = 39, .external_lex_state = 10}, + [1178] = {.lex_state = 39, .external_lex_state = 10}, + [1179] = {.lex_state = 39, .external_lex_state = 10}, + [1180] = {.lex_state = 39, .external_lex_state = 11}, + [1181] = {.lex_state = 39, .external_lex_state = 10}, + [1182] = {.lex_state = 39, .external_lex_state = 10}, [1183] = {.lex_state = 39, .external_lex_state = 10}, [1184] = {.lex_state = 39, .external_lex_state = 2}, - [1185] = {.lex_state = 39, .external_lex_state = 11}, + [1185] = {.lex_state = 39, .external_lex_state = 10}, [1186] = {.lex_state = 39, .external_lex_state = 5}, - [1187] = {.lex_state = 39, .external_lex_state = 3}, - [1188] = {.lex_state = 39, .external_lex_state = 5}, - [1189] = {.lex_state = 39, .external_lex_state = 5}, - [1190] = {.lex_state = 39, .external_lex_state = 10}, + [1187] = {.lex_state = 39, .external_lex_state = 5}, + [1188] = {.lex_state = 39, .external_lex_state = 10}, + [1189] = {.lex_state = 39, .external_lex_state = 10}, + [1190] = {.lex_state = 39, .external_lex_state = 11}, [1191] = {.lex_state = 39, .external_lex_state = 10}, - [1192] = {.lex_state = 39, .external_lex_state = 10}, + [1192] = {.lex_state = 39, .external_lex_state = 11}, [1193] = {.lex_state = 39, .external_lex_state = 10}, - [1194] = {.lex_state = 39, .external_lex_state = 10}, + [1194] = {.lex_state = 39, .external_lex_state = 5}, [1195] = {.lex_state = 39, .external_lex_state = 10}, - [1196] = {.lex_state = 39, .external_lex_state = 11}, + [1196] = {.lex_state = 39, .external_lex_state = 2}, [1197] = {.lex_state = 39, .external_lex_state = 2}, - [1198] = {.lex_state = 39, .external_lex_state = 10}, - [1199] = {.lex_state = 39, .external_lex_state = 10}, - [1200] = {.lex_state = 39, .external_lex_state = 10}, - [1201] = {.lex_state = 39, .external_lex_state = 11}, - [1202] = {.lex_state = 39, .external_lex_state = 10}, - [1203] = {.lex_state = 39, .external_lex_state = 10}, - [1204] = {.lex_state = 39, .external_lex_state = 11}, - [1205] = {.lex_state = 39, .external_lex_state = 10}, - [1206] = {.lex_state = 39, .external_lex_state = 10}, - [1207] = {.lex_state = 39, .external_lex_state = 5}, - [1208] = {.lex_state = 39, .external_lex_state = 10}, - [1209] = {.lex_state = 39, .external_lex_state = 10}, - [1210] = {.lex_state = 39, .external_lex_state = 2}, - [1211] = {.lex_state = 39, .external_lex_state = 10}, - [1212] = {.lex_state = 39, .external_lex_state = 10}, + [1198] = {.lex_state = 39, .external_lex_state = 9}, + [1199] = {.lex_state = 39, .external_lex_state = 9}, + [1200] = {.lex_state = 39, .external_lex_state = 9}, + [1201] = {.lex_state = 39, .external_lex_state = 9}, + [1202] = {.lex_state = 3, .external_lex_state = 10}, + [1203] = {.lex_state = 39, .external_lex_state = 9}, + [1204] = {.lex_state = 39, .external_lex_state = 9}, + [1205] = {.lex_state = 39, .external_lex_state = 2}, + [1206] = {.lex_state = 39, .external_lex_state = 9}, + [1207] = {.lex_state = 39, .external_lex_state = 10}, + [1208] = {.lex_state = 39, .external_lex_state = 9}, + [1209] = {.lex_state = 39, .external_lex_state = 9}, + [1210] = {.lex_state = 39, .external_lex_state = 9}, + [1211] = {.lex_state = 39, .external_lex_state = 9}, + [1212] = {.lex_state = 39, .external_lex_state = 9}, [1213] = {.lex_state = 39, .external_lex_state = 9}, - [1214] = {.lex_state = 39, .external_lex_state = 10}, - [1215] = {.lex_state = 39, .external_lex_state = 10}, - [1216] = {.lex_state = 39, .external_lex_state = 10}, - [1217] = {.lex_state = 39, .external_lex_state = 2}, + [1214] = {.lex_state = 39, .external_lex_state = 8}, + [1215] = {.lex_state = 39, .external_lex_state = 9}, + [1216] = {.lex_state = 39, .external_lex_state = 9}, + [1217] = {.lex_state = 39, .external_lex_state = 10}, [1218] = {.lex_state = 39, .external_lex_state = 10}, [1219] = {.lex_state = 39, .external_lex_state = 10}, [1220] = {.lex_state = 39, .external_lex_state = 10}, - [1221] = {.lex_state = 39, .external_lex_state = 11}, + [1221] = {.lex_state = 39, .external_lex_state = 9}, [1222] = {.lex_state = 39, .external_lex_state = 10}, - [1223] = {.lex_state = 39, .external_lex_state = 3}, - [1224] = {.lex_state = 39, .external_lex_state = 3}, - [1225] = {.lex_state = 39, .external_lex_state = 10}, + [1223] = {.lex_state = 39, .external_lex_state = 9}, + [1224] = {.lex_state = 39, .external_lex_state = 9}, + [1225] = {.lex_state = 39, .external_lex_state = 9}, [1226] = {.lex_state = 39, .external_lex_state = 10}, [1227] = {.lex_state = 39, .external_lex_state = 9}, - [1228] = {.lex_state = 39, .external_lex_state = 10}, - [1229] = {.lex_state = 39, .external_lex_state = 10}, - [1230] = {.lex_state = 39, .external_lex_state = 3}, - [1231] = {.lex_state = 39, .external_lex_state = 10}, + [1228] = {.lex_state = 3, .external_lex_state = 10}, + [1229] = {.lex_state = 39, .external_lex_state = 9}, + [1230] = {.lex_state = 39, .external_lex_state = 9}, + [1231] = {.lex_state = 39, .external_lex_state = 12}, [1232] = {.lex_state = 39, .external_lex_state = 9}, [1233] = {.lex_state = 39, .external_lex_state = 10}, [1234] = {.lex_state = 39, .external_lex_state = 9}, [1235] = {.lex_state = 39, .external_lex_state = 9}, - [1236] = {.lex_state = 39, .external_lex_state = 8}, + [1236] = {.lex_state = 39, .external_lex_state = 9}, [1237] = {.lex_state = 39, .external_lex_state = 9}, [1238] = {.lex_state = 39, .external_lex_state = 9}, [1239] = {.lex_state = 39, .external_lex_state = 9}, - [1240] = {.lex_state = 39, .external_lex_state = 9}, + [1240] = {.lex_state = 39, .external_lex_state = 10}, [1241] = {.lex_state = 39, .external_lex_state = 9}, [1242] = {.lex_state = 39, .external_lex_state = 9}, - [1243] = {.lex_state = 39, .external_lex_state = 10}, + [1243] = {.lex_state = 39, .external_lex_state = 9}, [1244] = {.lex_state = 39, .external_lex_state = 9}, [1245] = {.lex_state = 39, .external_lex_state = 9}, [1246] = {.lex_state = 39, .external_lex_state = 9}, - [1247] = {.lex_state = 39, .external_lex_state = 10}, + [1247] = {.lex_state = 39, .external_lex_state = 9}, [1248] = {.lex_state = 39, .external_lex_state = 9}, [1249] = {.lex_state = 39, .external_lex_state = 9}, [1250] = {.lex_state = 39, .external_lex_state = 9}, - [1251] = {.lex_state = 39, .external_lex_state = 9}, + [1251] = {.lex_state = 39, .external_lex_state = 3}, [1252] = {.lex_state = 39, .external_lex_state = 9}, [1253] = {.lex_state = 39, .external_lex_state = 9}, - [1254] = {.lex_state = 39, .external_lex_state = 9}, + [1254] = {.lex_state = 39, .external_lex_state = 10}, [1255] = {.lex_state = 39, .external_lex_state = 9}, [1256] = {.lex_state = 39, .external_lex_state = 9}, [1257] = {.lex_state = 39, .external_lex_state = 9}, [1258] = {.lex_state = 39, .external_lex_state = 9}, - [1259] = {.lex_state = 39, .external_lex_state = 9}, - [1260] = {.lex_state = 39, .external_lex_state = 9}, - [1261] = {.lex_state = 39, .external_lex_state = 9}, - [1262] = {.lex_state = 39, .external_lex_state = 2}, - [1263] = {.lex_state = 39, .external_lex_state = 10}, + [1259] = {.lex_state = 39, .external_lex_state = 10}, + [1260] = {.lex_state = 39, .external_lex_state = 10}, + [1261] = {.lex_state = 39, .external_lex_state = 10}, + [1262] = {.lex_state = 39, .external_lex_state = 10}, + [1263] = {.lex_state = 39, .external_lex_state = 8}, [1264] = {.lex_state = 39, .external_lex_state = 9}, [1265] = {.lex_state = 39, .external_lex_state = 9}, [1266] = {.lex_state = 39, .external_lex_state = 9}, - [1267] = {.lex_state = 39, .external_lex_state = 9}, + [1267] = {.lex_state = 39, .external_lex_state = 10}, [1268] = {.lex_state = 39, .external_lex_state = 9}, [1269] = {.lex_state = 39, .external_lex_state = 9}, [1270] = {.lex_state = 39, .external_lex_state = 9}, [1271] = {.lex_state = 39, .external_lex_state = 9}, - [1272] = {.lex_state = 39, .external_lex_state = 9}, + [1272] = {.lex_state = 39, .external_lex_state = 10}, [1273] = {.lex_state = 39, .external_lex_state = 10}, [1274] = {.lex_state = 39, .external_lex_state = 9}, - [1275] = {.lex_state = 39, .external_lex_state = 9}, - [1276] = {.lex_state = 39, .external_lex_state = 9}, + [1275] = {.lex_state = 3, .external_lex_state = 10}, + [1276] = {.lex_state = 39, .external_lex_state = 10}, [1277] = {.lex_state = 39, .external_lex_state = 9}, - [1278] = {.lex_state = 39, .external_lex_state = 9}, - [1279] = {.lex_state = 39, .external_lex_state = 10}, + [1278] = {.lex_state = 39, .external_lex_state = 10}, + [1279] = {.lex_state = 39, .external_lex_state = 9}, [1280] = {.lex_state = 39, .external_lex_state = 9}, [1281] = {.lex_state = 39, .external_lex_state = 9}, - [1282] = {.lex_state = 39, .external_lex_state = 8}, - [1283] = {.lex_state = 39, .external_lex_state = 3}, - [1284] = {.lex_state = 39, .external_lex_state = 10}, + [1282] = {.lex_state = 39, .external_lex_state = 9}, + [1283] = {.lex_state = 39, .external_lex_state = 9}, + [1284] = {.lex_state = 39, .external_lex_state = 9}, [1285] = {.lex_state = 39, .external_lex_state = 9}, [1286] = {.lex_state = 39, .external_lex_state = 9}, [1287] = {.lex_state = 39, .external_lex_state = 9}, - [1288] = {.lex_state = 39, .external_lex_state = 9}, - [1289] = {.lex_state = 39, .external_lex_state = 9}, - [1290] = {.lex_state = 39, .external_lex_state = 9}, - [1291] = {.lex_state = 39, .external_lex_state = 9}, + [1288] = {.lex_state = 39, .external_lex_state = 10}, + [1289] = {.lex_state = 39, .external_lex_state = 10}, + [1290] = {.lex_state = 39, .external_lex_state = 10}, + [1291] = {.lex_state = 39, .external_lex_state = 10}, [1292] = {.lex_state = 39, .external_lex_state = 10}, - [1293] = {.lex_state = 39, .external_lex_state = 9}, + [1293] = {.lex_state = 39, .external_lex_state = 10}, [1294] = {.lex_state = 39, .external_lex_state = 10}, - [1295] = {.lex_state = 39, .external_lex_state = 9}, + [1295] = {.lex_state = 39, .external_lex_state = 10}, [1296] = {.lex_state = 39, .external_lex_state = 10}, [1297] = {.lex_state = 39, .external_lex_state = 10}, - [1298] = {.lex_state = 39, .external_lex_state = 9}, - [1299] = {.lex_state = 39, .external_lex_state = 9}, - [1300] = {.lex_state = 39, .external_lex_state = 9}, - [1301] = {.lex_state = 39, .external_lex_state = 9}, + [1298] = {.lex_state = 39, .external_lex_state = 10}, + [1299] = {.lex_state = 39, .external_lex_state = 10}, + [1300] = {.lex_state = 39, .external_lex_state = 10}, + [1301] = {.lex_state = 39, .external_lex_state = 10}, [1302] = {.lex_state = 39, .external_lex_state = 10}, - [1303] = {.lex_state = 39, .external_lex_state = 12}, + [1303] = {.lex_state = 39, .external_lex_state = 10}, [1304] = {.lex_state = 39, .external_lex_state = 10}, - [1305] = {.lex_state = 39, .external_lex_state = 9}, - [1306] = {.lex_state = 39, .external_lex_state = 10}, - [1307] = {.lex_state = 3, .external_lex_state = 10}, - [1308] = {.lex_state = 39, .external_lex_state = 9}, - [1309] = {.lex_state = 39, .external_lex_state = 9}, - [1310] = {.lex_state = 3, .external_lex_state = 10}, - [1311] = {.lex_state = 39, .external_lex_state = 9}, + [1305] = {.lex_state = 39, .external_lex_state = 10}, + [1306] = {.lex_state = 39, .external_lex_state = 5}, + [1307] = {.lex_state = 39, .external_lex_state = 10}, + [1308] = {.lex_state = 39, .external_lex_state = 10}, + [1309] = {.lex_state = 39, .external_lex_state = 10}, + [1310] = {.lex_state = 39, .external_lex_state = 10}, + [1311] = {.lex_state = 39, .external_lex_state = 12}, [1312] = {.lex_state = 39, .external_lex_state = 10}, - [1313] = {.lex_state = 39, .external_lex_state = 9}, - [1314] = {.lex_state = 3, .external_lex_state = 10}, - [1315] = {.lex_state = 39, .external_lex_state = 9}, + [1313] = {.lex_state = 39, .external_lex_state = 10}, + [1314] = {.lex_state = 39, .external_lex_state = 9}, + [1315] = {.lex_state = 39, .external_lex_state = 10}, [1316] = {.lex_state = 39, .external_lex_state = 10}, - [1317] = {.lex_state = 39, .external_lex_state = 9}, + [1317] = {.lex_state = 39, .external_lex_state = 10}, [1318] = {.lex_state = 39, .external_lex_state = 10}, - [1319] = {.lex_state = 39, .external_lex_state = 9}, - [1320] = {.lex_state = 39, .external_lex_state = 9}, - [1321] = {.lex_state = 39, .external_lex_state = 9}, + [1319] = {.lex_state = 39, .external_lex_state = 10}, + [1320] = {.lex_state = 39, .external_lex_state = 10}, + [1321] = {.lex_state = 39, .external_lex_state = 10}, [1322] = {.lex_state = 39, .external_lex_state = 10}, [1323] = {.lex_state = 39, .external_lex_state = 10}, [1324] = {.lex_state = 39, .external_lex_state = 10}, - [1325] = {.lex_state = 39, .external_lex_state = 12}, + [1325] = {.lex_state = 39, .external_lex_state = 10}, [1326] = {.lex_state = 39, .external_lex_state = 10}, [1327] = {.lex_state = 39, .external_lex_state = 10}, - [1328] = {.lex_state = 39, .external_lex_state = 10}, - [1329] = {.lex_state = 39, .external_lex_state = 10}, - [1330] = {.lex_state = 39, .external_lex_state = 10}, + [1328] = {.lex_state = 39, .external_lex_state = 9}, + [1329] = {.lex_state = 39, .external_lex_state = 9}, + [1330] = {.lex_state = 39, .external_lex_state = 9}, [1331] = {.lex_state = 39, .external_lex_state = 10}, [1332] = {.lex_state = 39, .external_lex_state = 10}, [1333] = {.lex_state = 39, .external_lex_state = 10}, - [1334] = {.lex_state = 39, .external_lex_state = 10}, + [1334] = {.lex_state = 39, .external_lex_state = 9}, [1335] = {.lex_state = 39, .external_lex_state = 10}, - [1336] = {.lex_state = 39, .external_lex_state = 10}, + [1336] = {.lex_state = 39, .external_lex_state = 9}, [1337] = {.lex_state = 39, .external_lex_state = 10}, [1338] = {.lex_state = 39, .external_lex_state = 9}, - [1339] = {.lex_state = 39, .external_lex_state = 10}, + [1339] = {.lex_state = 39, .external_lex_state = 9}, [1340] = {.lex_state = 39, .external_lex_state = 10}, [1341] = {.lex_state = 39, .external_lex_state = 10}, - [1342] = {.lex_state = 39, .external_lex_state = 10}, + [1342] = {.lex_state = 39, .external_lex_state = 9}, [1343] = {.lex_state = 39, .external_lex_state = 9}, - [1344] = {.lex_state = 39, .external_lex_state = 10}, - [1345] = {.lex_state = 39, .external_lex_state = 10}, + [1344] = {.lex_state = 39, .external_lex_state = 9}, + [1345] = {.lex_state = 39, .external_lex_state = 12}, [1346] = {.lex_state = 39, .external_lex_state = 10}, [1347] = {.lex_state = 39, .external_lex_state = 10}, [1348] = {.lex_state = 39, .external_lex_state = 10}, [1349] = {.lex_state = 39, .external_lex_state = 10}, - [1350] = {.lex_state = 39, .external_lex_state = 10}, - [1351] = {.lex_state = 39, .external_lex_state = 9}, - [1352] = {.lex_state = 39, .external_lex_state = 10}, + [1350] = {.lex_state = 39, .external_lex_state = 9}, + [1351] = {.lex_state = 39, .external_lex_state = 10}, + [1352] = {.lex_state = 39, .external_lex_state = 9}, [1353] = {.lex_state = 39, .external_lex_state = 10}, - [1354] = {.lex_state = 39, .external_lex_state = 10}, - [1355] = {.lex_state = 39, .external_lex_state = 10}, - [1356] = {.lex_state = 39, .external_lex_state = 10}, - [1357] = {.lex_state = 39, .external_lex_state = 9}, - [1358] = {.lex_state = 39, .external_lex_state = 10}, + [1354] = {.lex_state = 39, .external_lex_state = 9}, + [1355] = {.lex_state = 39, .external_lex_state = 9}, + [1356] = {.lex_state = 39, .external_lex_state = 9}, + [1357] = {.lex_state = 39, .external_lex_state = 10}, + [1358] = {.lex_state = 39, .external_lex_state = 9}, [1359] = {.lex_state = 39, .external_lex_state = 10}, - [1360] = {.lex_state = 39, .external_lex_state = 10}, + [1360] = {.lex_state = 39, .external_lex_state = 9}, [1361] = {.lex_state = 39, .external_lex_state = 10}, - [1362] = {.lex_state = 39, .external_lex_state = 12}, - [1363] = {.lex_state = 39, .external_lex_state = 10}, + [1362] = {.lex_state = 39, .external_lex_state = 9}, + [1363] = {.lex_state = 39, .external_lex_state = 9}, [1364] = {.lex_state = 39, .external_lex_state = 10}, [1365] = {.lex_state = 39, .external_lex_state = 10}, [1366] = {.lex_state = 39, .external_lex_state = 10}, [1367] = {.lex_state = 39, .external_lex_state = 10}, - [1368] = {.lex_state = 39, .external_lex_state = 9}, + [1368] = {.lex_state = 39, .external_lex_state = 10}, [1369] = {.lex_state = 39, .external_lex_state = 10}, [1370] = {.lex_state = 39, .external_lex_state = 10}, - [1371] = {.lex_state = 39, .external_lex_state = 10}, - [1372] = {.lex_state = 39, .external_lex_state = 9}, + [1371] = {.lex_state = 39, .external_lex_state = 9}, + [1372] = {.lex_state = 39, .external_lex_state = 10}, [1373] = {.lex_state = 39, .external_lex_state = 10}, - [1374] = {.lex_state = 39, .external_lex_state = 9}, - [1375] = {.lex_state = 39, .external_lex_state = 10}, - [1376] = {.lex_state = 39, .external_lex_state = 12}, + [1374] = {.lex_state = 39, .external_lex_state = 10}, + [1375] = {.lex_state = 39, .external_lex_state = 9}, + [1376] = {.lex_state = 39, .external_lex_state = 9}, [1377] = {.lex_state = 39, .external_lex_state = 10}, - [1378] = {.lex_state = 39, .external_lex_state = 10}, - [1379] = {.lex_state = 39, .external_lex_state = 10}, + [1378] = {.lex_state = 39, .external_lex_state = 9}, + [1379] = {.lex_state = 39, .external_lex_state = 9}, [1380] = {.lex_state = 39, .external_lex_state = 10}, [1381] = {.lex_state = 39, .external_lex_state = 10}, - [1382] = {.lex_state = 39, .external_lex_state = 10}, - [1383] = {.lex_state = 39, .external_lex_state = 10}, - [1384] = {.lex_state = 39, .external_lex_state = 10}, - [1385] = {.lex_state = 39, .external_lex_state = 10}, - [1386] = {.lex_state = 39, .external_lex_state = 10}, + [1382] = {.lex_state = 39, .external_lex_state = 12}, + [1383] = {.lex_state = 39, .external_lex_state = 3}, + [1384] = {.lex_state = 39, .external_lex_state = 9}, + [1385] = {.lex_state = 39, .external_lex_state = 3}, + [1386] = {.lex_state = 39, .external_lex_state = 9}, [1387] = {.lex_state = 39, .external_lex_state = 9}, - [1388] = {.lex_state = 39, .external_lex_state = 10}, - [1389] = {.lex_state = 39, .external_lex_state = 9}, - [1390] = {.lex_state = 39, .external_lex_state = 9}, - [1391] = {.lex_state = 39, .external_lex_state = 10}, - [1392] = {.lex_state = 39, .external_lex_state = 10}, - [1393] = {.lex_state = 39, .external_lex_state = 9}, - [1394] = {.lex_state = 39, .external_lex_state = 10}, - [1395] = {.lex_state = 39, .external_lex_state = 9}, - [1396] = {.lex_state = 39, .external_lex_state = 10}, - [1397] = {.lex_state = 39, .external_lex_state = 10}, - [1398] = {.lex_state = 39, .external_lex_state = 10}, - [1399] = {.lex_state = 39, .external_lex_state = 9}, - [1400] = {.lex_state = 39, .external_lex_state = 5}, - [1401] = {.lex_state = 39, .external_lex_state = 10}, - [1402] = {.lex_state = 39, .external_lex_state = 9}, + [1388] = {.lex_state = 39, .external_lex_state = 3}, + [1389] = {.lex_state = 39, .external_lex_state = 2}, + [1390] = {.lex_state = 39, .external_lex_state = 11}, + [1391] = {.lex_state = 39, .external_lex_state = 11}, + [1392] = {.lex_state = 39, .external_lex_state = 11}, + [1393] = {.lex_state = 39, .external_lex_state = 11}, + [1394] = {.lex_state = 39, .external_lex_state = 11}, + [1395] = {.lex_state = 39, .external_lex_state = 11}, + [1396] = {.lex_state = 39, .external_lex_state = 11}, + [1397] = {.lex_state = 39, .external_lex_state = 9}, + [1398] = {.lex_state = 39, .external_lex_state = 2}, + [1399] = {.lex_state = 39, .external_lex_state = 11}, + [1400] = {.lex_state = 39, .external_lex_state = 9}, + [1401] = {.lex_state = 39, .external_lex_state = 11}, + [1402] = {.lex_state = 39, .external_lex_state = 11}, [1403] = {.lex_state = 39, .external_lex_state = 9}, - [1404] = {.lex_state = 39, .external_lex_state = 9}, - [1405] = {.lex_state = 39, .external_lex_state = 9}, - [1406] = {.lex_state = 39, .external_lex_state = 9}, - [1407] = {.lex_state = 39, .external_lex_state = 9}, - [1408] = {.lex_state = 39, .external_lex_state = 10}, - [1409] = {.lex_state = 39, .external_lex_state = 10}, - [1410] = {.lex_state = 39, .external_lex_state = 10}, - [1411] = {.lex_state = 39, .external_lex_state = 9}, - [1412] = {.lex_state = 39, .external_lex_state = 9}, - [1413] = {.lex_state = 39, .external_lex_state = 10}, - [1414] = {.lex_state = 39, .external_lex_state = 9}, - [1415] = {.lex_state = 39, .external_lex_state = 9}, - [1416] = {.lex_state = 39, .external_lex_state = 10}, - [1417] = {.lex_state = 39, .external_lex_state = 9}, + [1404] = {.lex_state = 39, .external_lex_state = 11}, + [1405] = {.lex_state = 39, .external_lex_state = 11}, + [1406] = {.lex_state = 39, .external_lex_state = 11}, + [1407] = {.lex_state = 39, .external_lex_state = 8}, + [1408] = {.lex_state = 39, .external_lex_state = 11}, + [1409] = {.lex_state = 39, .external_lex_state = 11}, + [1410] = {.lex_state = 39, .external_lex_state = 11}, + [1411] = {.lex_state = 39, .external_lex_state = 11}, + [1412] = {.lex_state = 39, .external_lex_state = 11}, + [1413] = {.lex_state = 39, .external_lex_state = 2}, + [1414] = {.lex_state = 39, .external_lex_state = 11}, + [1415] = {.lex_state = 39, .external_lex_state = 11}, + [1416] = {.lex_state = 39, .external_lex_state = 3}, + [1417] = {.lex_state = 39, .external_lex_state = 11}, [1418] = {.lex_state = 39, .external_lex_state = 9}, - [1419] = {.lex_state = 39, .external_lex_state = 10}, - [1420] = {.lex_state = 39, .external_lex_state = 10}, - [1421] = {.lex_state = 39, .external_lex_state = 9}, - [1422] = {.lex_state = 39, .external_lex_state = 9}, + [1419] = {.lex_state = 39, .external_lex_state = 11}, + [1420] = {.lex_state = 39, .external_lex_state = 11}, + [1421] = {.lex_state = 39, .external_lex_state = 3}, + [1422] = {.lex_state = 39, .external_lex_state = 11}, [1423] = {.lex_state = 39, .external_lex_state = 11}, - [1424] = {.lex_state = 39, .external_lex_state = 9}, - [1425] = {.lex_state = 39, .external_lex_state = 2}, - [1426] = {.lex_state = 39, .external_lex_state = 2}, + [1424] = {.lex_state = 39, .external_lex_state = 11}, + [1425] = {.lex_state = 39, .external_lex_state = 11}, + [1426] = {.lex_state = 39, .external_lex_state = 9}, [1427] = {.lex_state = 39, .external_lex_state = 9}, - [1428] = {.lex_state = 39, .external_lex_state = 9}, + [1428] = {.lex_state = 39, .external_lex_state = 11}, [1429] = {.lex_state = 39, .external_lex_state = 9}, [1430] = {.lex_state = 39, .external_lex_state = 11}, - [1431] = {.lex_state = 39, .external_lex_state = 2}, - [1432] = {.lex_state = 39, .external_lex_state = 11}, + [1431] = {.lex_state = 39, .external_lex_state = 11}, + [1432] = {.lex_state = 39, .external_lex_state = 2}, [1433] = {.lex_state = 39, .external_lex_state = 2}, - [1434] = {.lex_state = 39, .external_lex_state = 11}, - [1435] = {.lex_state = 39, .external_lex_state = 11}, + [1434] = {.lex_state = 39, .external_lex_state = 9}, + [1435] = {.lex_state = 39, .external_lex_state = 9}, [1436] = {.lex_state = 39, .external_lex_state = 9}, - [1437] = {.lex_state = 39, .external_lex_state = 11}, + [1437] = {.lex_state = 39, .external_lex_state = 2}, [1438] = {.lex_state = 39, .external_lex_state = 9}, - [1439] = {.lex_state = 39, .external_lex_state = 11}, - [1440] = {.lex_state = 39, .external_lex_state = 11}, - [1441] = {.lex_state = 39, .external_lex_state = 9}, + [1439] = {.lex_state = 39, .external_lex_state = 9}, + [1440] = {.lex_state = 39, .external_lex_state = 9}, + [1441] = {.lex_state = 39, .external_lex_state = 11}, [1442] = {.lex_state = 39, .external_lex_state = 11}, [1443] = {.lex_state = 39, .external_lex_state = 11}, - [1444] = {.lex_state = 39, .external_lex_state = 9}, + [1444] = {.lex_state = 39, .external_lex_state = 11}, [1445] = {.lex_state = 39, .external_lex_state = 3}, - [1446] = {.lex_state = 39, .external_lex_state = 9}, + [1446] = {.lex_state = 39, .external_lex_state = 11}, [1447] = {.lex_state = 39, .external_lex_state = 11}, [1448] = {.lex_state = 39, .external_lex_state = 11}, [1449] = {.lex_state = 39, .external_lex_state = 11}, - [1450] = {.lex_state = 39, .external_lex_state = 3}, + [1450] = {.lex_state = 39, .external_lex_state = 11}, [1451] = {.lex_state = 39, .external_lex_state = 11}, - [1452] = {.lex_state = 39, .external_lex_state = 9}, - [1453] = {.lex_state = 39, .external_lex_state = 9}, - [1454] = {.lex_state = 39, .external_lex_state = 3}, - [1455] = {.lex_state = 39, .external_lex_state = 11}, - [1456] = {.lex_state = 39, .external_lex_state = 11}, - [1457] = {.lex_state = 39, .external_lex_state = 11}, - [1458] = {.lex_state = 39, .external_lex_state = 11}, - [1459] = {.lex_state = 39, .external_lex_state = 11}, - [1460] = {.lex_state = 39, .external_lex_state = 11}, - [1461] = {.lex_state = 39, .external_lex_state = 3}, - [1462] = {.lex_state = 39, .external_lex_state = 11}, - [1463] = {.lex_state = 39, .external_lex_state = 11}, - [1464] = {.lex_state = 39, .external_lex_state = 11}, - [1465] = {.lex_state = 39, .external_lex_state = 11}, - [1466] = {.lex_state = 39, .external_lex_state = 2}, - [1467] = {.lex_state = 39, .external_lex_state = 11}, - [1468] = {.lex_state = 39, .external_lex_state = 11}, - [1469] = {.lex_state = 39, .external_lex_state = 11}, - [1470] = {.lex_state = 39, .external_lex_state = 11}, - [1471] = {.lex_state = 39, .external_lex_state = 11}, - [1472] = {.lex_state = 39, .external_lex_state = 3}, - [1473] = {.lex_state = 39, .external_lex_state = 11}, - [1474] = {.lex_state = 39, .external_lex_state = 11}, + [1452] = {.lex_state = 39, .external_lex_state = 11}, + [1453] = {.lex_state = 3, .external_lex_state = 10}, + [1454] = {.lex_state = 39, .external_lex_state = 8}, + [1455] = {.lex_state = 39, .external_lex_state = 9}, + [1456] = {.lex_state = 39, .external_lex_state = 9}, + [1457] = {.lex_state = 39, .external_lex_state = 8}, + [1458] = {.lex_state = 39, .external_lex_state = 9}, + [1459] = {.lex_state = 39, .external_lex_state = 9}, + [1460] = {.lex_state = 39, .external_lex_state = 9}, + [1461] = {.lex_state = 39, .external_lex_state = 8}, + [1462] = {.lex_state = 3, .external_lex_state = 10}, + [1463] = {.lex_state = 39, .external_lex_state = 8}, + [1464] = {.lex_state = 39, .external_lex_state = 9}, + [1465] = {.lex_state = 39, .external_lex_state = 9}, + [1466] = {.lex_state = 39, .external_lex_state = 8}, + [1467] = {.lex_state = 39, .external_lex_state = 9}, + [1468] = {.lex_state = 39, .external_lex_state = 8}, + [1469] = {.lex_state = 3, .external_lex_state = 10}, + [1470] = {.lex_state = 3, .external_lex_state = 10}, + [1471] = {.lex_state = 39, .external_lex_state = 9}, + [1472] = {.lex_state = 39, .external_lex_state = 9}, + [1473] = {.lex_state = 39, .external_lex_state = 9}, + [1474] = {.lex_state = 39, .external_lex_state = 9}, [1475] = {.lex_state = 39, .external_lex_state = 9}, [1476] = {.lex_state = 39, .external_lex_state = 9}, [1477] = {.lex_state = 39, .external_lex_state = 9}, - [1478] = {.lex_state = 39, .external_lex_state = 11}, - [1479] = {.lex_state = 39, .external_lex_state = 9}, - [1480] = {.lex_state = 39, .external_lex_state = 2}, - [1481] = {.lex_state = 39, .external_lex_state = 8}, - [1482] = {.lex_state = 39, .external_lex_state = 11}, - [1483] = {.lex_state = 39, .external_lex_state = 11}, - [1484] = {.lex_state = 39, .external_lex_state = 11}, + [1478] = {.lex_state = 39, .external_lex_state = 9}, + [1479] = {.lex_state = 39, .external_lex_state = 8}, + [1480] = {.lex_state = 39, .external_lex_state = 9}, + [1481] = {.lex_state = 39, .external_lex_state = 9}, + [1482] = {.lex_state = 3, .external_lex_state = 10}, + [1483] = {.lex_state = 3, .external_lex_state = 10}, + [1484] = {.lex_state = 39, .external_lex_state = 9}, [1485] = {.lex_state = 39, .external_lex_state = 11}, - [1486] = {.lex_state = 39, .external_lex_state = 11}, + [1486] = {.lex_state = 3, .external_lex_state = 10}, [1487] = {.lex_state = 39, .external_lex_state = 11}, - [1488] = {.lex_state = 39, .external_lex_state = 3}, - [1489] = {.lex_state = 39, .external_lex_state = 11}, - [1490] = {.lex_state = 39, .external_lex_state = 11}, - [1491] = {.lex_state = 39, .external_lex_state = 11}, - [1492] = {.lex_state = 39, .external_lex_state = 11}, - [1493] = {.lex_state = 3, .external_lex_state = 10}, - [1494] = {.lex_state = 39, .external_lex_state = 8}, - [1495] = {.lex_state = 39, .external_lex_state = 9}, - [1496] = {.lex_state = 39, .external_lex_state = 9}, + [1488] = {.lex_state = 3, .external_lex_state = 10}, + [1489] = {.lex_state = 3, .external_lex_state = 10}, + [1490] = {.lex_state = 39, .external_lex_state = 8}, + [1491] = {.lex_state = 39, .external_lex_state = 8}, + [1492] = {.lex_state = 39, .external_lex_state = 9}, + [1493] = {.lex_state = 39, .external_lex_state = 9}, + [1494] = {.lex_state = 39, .external_lex_state = 9}, + [1495] = {.lex_state = 3, .external_lex_state = 10}, + [1496] = {.lex_state = 39, .external_lex_state = 11}, [1497] = {.lex_state = 3, .external_lex_state = 10}, - [1498] = {.lex_state = 39, .external_lex_state = 9}, - [1499] = {.lex_state = 39, .external_lex_state = 9}, - [1500] = {.lex_state = 39, .external_lex_state = 8}, - [1501] = {.lex_state = 39, .external_lex_state = 9}, - [1502] = {.lex_state = 39, .external_lex_state = 9}, - [1503] = {.lex_state = 39, .external_lex_state = 9}, - [1504] = {.lex_state = 39, .external_lex_state = 9}, - [1505] = {.lex_state = 39, .external_lex_state = 9}, + [1498] = {.lex_state = 39, .external_lex_state = 8}, + [1499] = {.lex_state = 3, .external_lex_state = 10}, + [1500] = {.lex_state = 3, .external_lex_state = 10}, + [1501] = {.lex_state = 3, .external_lex_state = 10}, + [1502] = {.lex_state = 39, .external_lex_state = 8}, + [1503] = {.lex_state = 39, .external_lex_state = 11}, + [1504] = {.lex_state = 39, .external_lex_state = 11}, + [1505] = {.lex_state = 39, .external_lex_state = 8}, [1506] = {.lex_state = 39, .external_lex_state = 8}, - [1507] = {.lex_state = 39, .external_lex_state = 8}, - [1508] = {.lex_state = 39, .external_lex_state = 8}, + [1507] = {.lex_state = 39, .external_lex_state = 11}, + [1508] = {.lex_state = 39, .external_lex_state = 11}, [1509] = {.lex_state = 39, .external_lex_state = 8}, - [1510] = {.lex_state = 39, .external_lex_state = 8}, - [1511] = {.lex_state = 39, .external_lex_state = 8}, - [1512] = {.lex_state = 39, .external_lex_state = 8}, + [1510] = {.lex_state = 39, .external_lex_state = 11}, + [1511] = {.lex_state = 39, .external_lex_state = 9}, + [1512] = {.lex_state = 3, .external_lex_state = 10}, [1513] = {.lex_state = 39, .external_lex_state = 9}, [1514] = {.lex_state = 39, .external_lex_state = 8}, [1515] = {.lex_state = 39, .external_lex_state = 11}, - [1516] = {.lex_state = 39, .external_lex_state = 8}, - [1517] = {.lex_state = 39, .external_lex_state = 11}, - [1518] = {.lex_state = 39, .external_lex_state = 8}, - [1519] = {.lex_state = 39, .external_lex_state = 9}, - [1520] = {.lex_state = 39, .external_lex_state = 9}, + [1516] = {.lex_state = 39, .external_lex_state = 9}, + [1517] = {.lex_state = 3, .external_lex_state = 10}, + [1518] = {.lex_state = 3, .external_lex_state = 10}, + [1519] = {.lex_state = 39, .external_lex_state = 11}, + [1520] = {.lex_state = 3, .external_lex_state = 10}, [1521] = {.lex_state = 39, .external_lex_state = 11}, - [1522] = {.lex_state = 39, .external_lex_state = 11}, + [1522] = {.lex_state = 39, .external_lex_state = 8}, [1523] = {.lex_state = 39, .external_lex_state = 8}, - [1524] = {.lex_state = 39, .external_lex_state = 8}, + [1524] = {.lex_state = 39, .external_lex_state = 9}, [1525] = {.lex_state = 39, .external_lex_state = 8}, [1526] = {.lex_state = 39, .external_lex_state = 8}, - [1527] = {.lex_state = 3, .external_lex_state = 10}, - [1528] = {.lex_state = 39, .external_lex_state = 8}, - [1529] = {.lex_state = 39, .external_lex_state = 8}, + [1527] = {.lex_state = 39, .external_lex_state = 8}, + [1528] = {.lex_state = 3, .external_lex_state = 10}, + [1529] = {.lex_state = 3, .external_lex_state = 10}, [1530] = {.lex_state = 39, .external_lex_state = 11}, - [1531] = {.lex_state = 39, .external_lex_state = 8}, - [1532] = {.lex_state = 39, .external_lex_state = 9}, + [1531] = {.lex_state = 39, .external_lex_state = 11}, + [1532] = {.lex_state = 39, .external_lex_state = 8}, [1533] = {.lex_state = 39, .external_lex_state = 8}, - [1534] = {.lex_state = 39, .external_lex_state = 11}, - [1535] = {.lex_state = 39, .external_lex_state = 11}, - [1536] = {.lex_state = 39, .external_lex_state = 8}, - [1537] = {.lex_state = 39, .external_lex_state = 9}, - [1538] = {.lex_state = 39, .external_lex_state = 9}, + [1534] = {.lex_state = 39, .external_lex_state = 8}, + [1535] = {.lex_state = 39, .external_lex_state = 8}, + [1536] = {.lex_state = 39, .external_lex_state = 11}, + [1537] = {.lex_state = 39, .external_lex_state = 11}, + [1538] = {.lex_state = 3, .external_lex_state = 10}, [1539] = {.lex_state = 39, .external_lex_state = 8}, - [1540] = {.lex_state = 39, .external_lex_state = 11}, + [1540] = {.lex_state = 3, .external_lex_state = 10}, [1541] = {.lex_state = 39, .external_lex_state = 8}, - [1542] = {.lex_state = 39, .external_lex_state = 8}, - [1543] = {.lex_state = 39, .external_lex_state = 9}, + [1542] = {.lex_state = 3, .external_lex_state = 10}, + [1543] = {.lex_state = 39, .external_lex_state = 8}, [1544] = {.lex_state = 3, .external_lex_state = 10}, - [1545] = {.lex_state = 39, .external_lex_state = 8}, - [1546] = {.lex_state = 39, .external_lex_state = 11}, - [1547] = {.lex_state = 39, .external_lex_state = 8}, - [1548] = {.lex_state = 39, .external_lex_state = 9}, + [1545] = {.lex_state = 39, .external_lex_state = 11}, + [1546] = {.lex_state = 3, .external_lex_state = 10}, + [1547] = {.lex_state = 39, .external_lex_state = 11}, + [1548] = {.lex_state = 39, .external_lex_state = 8}, [1549] = {.lex_state = 39, .external_lex_state = 9}, - [1550] = {.lex_state = 39, .external_lex_state = 8}, + [1550] = {.lex_state = 3, .external_lex_state = 10}, [1551] = {.lex_state = 39, .external_lex_state = 8}, [1552] = {.lex_state = 39, .external_lex_state = 9}, - [1553] = {.lex_state = 3, .external_lex_state = 10}, + [1553] = {.lex_state = 39, .external_lex_state = 8}, [1554] = {.lex_state = 39, .external_lex_state = 9}, - [1555] = {.lex_state = 39, .external_lex_state = 11}, - [1556] = {.lex_state = 3, .external_lex_state = 10}, - [1557] = {.lex_state = 39, .external_lex_state = 9}, - [1558] = {.lex_state = 39, .external_lex_state = 9}, - [1559] = {.lex_state = 39, .external_lex_state = 11}, + [1555] = {.lex_state = 3, .external_lex_state = 10}, + [1556] = {.lex_state = 39, .external_lex_state = 9}, + [1557] = {.lex_state = 39, .external_lex_state = 8}, + [1558] = {.lex_state = 3, .external_lex_state = 10}, + [1559] = {.lex_state = 3, .external_lex_state = 10}, [1560] = {.lex_state = 3, .external_lex_state = 10}, - [1561] = {.lex_state = 39, .external_lex_state = 9}, - [1562] = {.lex_state = 3, .external_lex_state = 10}, + [1561] = {.lex_state = 39, .external_lex_state = 8}, + [1562] = {.lex_state = 39, .external_lex_state = 9}, [1563] = {.lex_state = 39, .external_lex_state = 11}, - [1564] = {.lex_state = 39, .external_lex_state = 11}, - [1565] = {.lex_state = 39, .external_lex_state = 9}, - [1566] = {.lex_state = 39, .external_lex_state = 9}, + [1564] = {.lex_state = 39, .external_lex_state = 8}, + [1565] = {.lex_state = 39, .external_lex_state = 8}, + [1566] = {.lex_state = 39, .external_lex_state = 11}, [1567] = {.lex_state = 39, .external_lex_state = 8}, - [1568] = {.lex_state = 39, .external_lex_state = 8}, + [1568] = {.lex_state = 3, .external_lex_state = 10}, [1569] = {.lex_state = 3, .external_lex_state = 10}, - [1570] = {.lex_state = 3, .external_lex_state = 10}, - [1571] = {.lex_state = 39, .external_lex_state = 8}, - [1572] = {.lex_state = 39, .external_lex_state = 9}, - [1573] = {.lex_state = 3, .external_lex_state = 10}, + [1570] = {.lex_state = 39, .external_lex_state = 9}, + [1571] = {.lex_state = 3, .external_lex_state = 10}, + [1572] = {.lex_state = 3, .external_lex_state = 10}, + [1573] = {.lex_state = 39, .external_lex_state = 9}, [1574] = {.lex_state = 3, .external_lex_state = 10}, [1575] = {.lex_state = 3, .external_lex_state = 10}, [1576] = {.lex_state = 3, .external_lex_state = 10}, - [1577] = {.lex_state = 39, .external_lex_state = 11}, - [1578] = {.lex_state = 39, .external_lex_state = 11}, - [1579] = {.lex_state = 39, .external_lex_state = 11}, - [1580] = {.lex_state = 39, .external_lex_state = 11}, - [1581] = {.lex_state = 39, .external_lex_state = 11}, - [1582] = {.lex_state = 3, .external_lex_state = 10}, - [1583] = {.lex_state = 3, .external_lex_state = 10}, - [1584] = {.lex_state = 3, .external_lex_state = 10}, + [1577] = {.lex_state = 3, .external_lex_state = 10}, + [1578] = {.lex_state = 39, .external_lex_state = 8}, + [1579] = {.lex_state = 39, .external_lex_state = 8}, + [1580] = {.lex_state = 39, .external_lex_state = 8}, + [1581] = {.lex_state = 3, .external_lex_state = 10}, + [1582] = {.lex_state = 39, .external_lex_state = 9}, + [1583] = {.lex_state = 39, .external_lex_state = 8}, + [1584] = {.lex_state = 39, .external_lex_state = 8}, [1585] = {.lex_state = 39, .external_lex_state = 8}, [1586] = {.lex_state = 3, .external_lex_state = 10}, [1587] = {.lex_state = 3, .external_lex_state = 10}, - [1588] = {.lex_state = 39, .external_lex_state = 9}, - [1589] = {.lex_state = 3, .external_lex_state = 10}, - [1590] = {.lex_state = 3, .external_lex_state = 10}, - [1591] = {.lex_state = 3, .external_lex_state = 10}, - [1592] = {.lex_state = 3, .external_lex_state = 10}, - [1593] = {.lex_state = 3, .external_lex_state = 10}, - [1594] = {.lex_state = 3, .external_lex_state = 10}, - [1595] = {.lex_state = 3, .external_lex_state = 10}, - [1596] = {.lex_state = 39, .external_lex_state = 8}, - [1597] = {.lex_state = 3, .external_lex_state = 10}, - [1598] = {.lex_state = 39, .external_lex_state = 9}, - [1599] = {.lex_state = 39, .external_lex_state = 9}, - [1600] = {.lex_state = 39, .external_lex_state = 8}, - [1601] = {.lex_state = 3, .external_lex_state = 10}, - [1602] = {.lex_state = 3, .external_lex_state = 10}, - [1603] = {.lex_state = 39, .external_lex_state = 9}, + [1588] = {.lex_state = 39, .external_lex_state = 12}, + [1589] = {.lex_state = 39, .external_lex_state = 11}, + [1590] = {.lex_state = 39, .external_lex_state = 2}, + [1591] = {.lex_state = 39, .external_lex_state = 2}, + [1592] = {.lex_state = 39, .external_lex_state = 2}, + [1593] = {.lex_state = 39, .external_lex_state = 2}, + [1594] = {.lex_state = 39, .external_lex_state = 2}, + [1595] = {.lex_state = 39, .external_lex_state = 8}, + [1596] = {.lex_state = 39, .external_lex_state = 2}, + [1597] = {.lex_state = 39, .external_lex_state = 12}, + [1598] = {.lex_state = 39, .external_lex_state = 2}, + [1599] = {.lex_state = 39, .external_lex_state = 2}, + [1600] = {.lex_state = 39, .external_lex_state = 9}, + [1601] = {.lex_state = 39, .external_lex_state = 10}, + [1602] = {.lex_state = 39, .external_lex_state = 3}, + [1603] = {.lex_state = 39, .external_lex_state = 8}, [1604] = {.lex_state = 39, .external_lex_state = 8}, - [1605] = {.lex_state = 39, .external_lex_state = 9}, - [1606] = {.lex_state = 3, .external_lex_state = 10}, - [1607] = {.lex_state = 3, .external_lex_state = 10}, - [1608] = {.lex_state = 3, .external_lex_state = 10}, - [1609] = {.lex_state = 3, .external_lex_state = 10}, - [1610] = {.lex_state = 39, .external_lex_state = 9}, - [1611] = {.lex_state = 3, .external_lex_state = 10}, - [1612] = {.lex_state = 39, .external_lex_state = 8}, - [1613] = {.lex_state = 3, .external_lex_state = 10}, - [1614] = {.lex_state = 39, .external_lex_state = 9}, - [1615] = {.lex_state = 3, .external_lex_state = 10}, + [1605] = {.lex_state = 39, .external_lex_state = 8}, + [1606] = {.lex_state = 39, .external_lex_state = 8}, + [1607] = {.lex_state = 39, .external_lex_state = 12}, + [1608] = {.lex_state = 39, .external_lex_state = 8}, + [1609] = {.lex_state = 39, .external_lex_state = 3}, + [1610] = {.lex_state = 39, .external_lex_state = 2}, + [1611] = {.lex_state = 39, .external_lex_state = 9}, + [1612] = {.lex_state = 39, .external_lex_state = 9}, + [1613] = {.lex_state = 39, .external_lex_state = 3}, + [1614] = {.lex_state = 39, .external_lex_state = 12}, + [1615] = {.lex_state = 39, .external_lex_state = 3}, [1616] = {.lex_state = 39, .external_lex_state = 9}, - [1617] = {.lex_state = 39, .external_lex_state = 8}, - [1618] = {.lex_state = 3, .external_lex_state = 10}, - [1619] = {.lex_state = 39, .external_lex_state = 8}, - [1620] = {.lex_state = 39, .external_lex_state = 8}, - [1621] = {.lex_state = 39, .external_lex_state = 9}, - [1622] = {.lex_state = 39, .external_lex_state = 8}, - [1623] = {.lex_state = 3, .external_lex_state = 10}, - [1624] = {.lex_state = 3, .external_lex_state = 10}, - [1625] = {.lex_state = 3, .external_lex_state = 10}, - [1626] = {.lex_state = 39, .external_lex_state = 8}, - [1627] = {.lex_state = 39, .external_lex_state = 8}, - [1628] = {.lex_state = 3, .external_lex_state = 10}, + [1617] = {.lex_state = 39, .external_lex_state = 9}, + [1618] = {.lex_state = 39, .external_lex_state = 3}, + [1619] = {.lex_state = 39, .external_lex_state = 3}, + [1620] = {.lex_state = 39, .external_lex_state = 11}, + [1621] = {.lex_state = 39, .external_lex_state = 3}, + [1622] = {.lex_state = 39, .external_lex_state = 3}, + [1623] = {.lex_state = 39, .external_lex_state = 3}, + [1624] = {.lex_state = 39, .external_lex_state = 3}, + [1625] = {.lex_state = 39, .external_lex_state = 3}, + [1626] = {.lex_state = 39, .external_lex_state = 9}, + [1627] = {.lex_state = 39, .external_lex_state = 3}, + [1628] = {.lex_state = 39, .external_lex_state = 3}, [1629] = {.lex_state = 3, .external_lex_state = 10}, - [1630] = {.lex_state = 39, .external_lex_state = 11}, - [1631] = {.lex_state = 39, .external_lex_state = 8}, - [1632] = {.lex_state = 3, .external_lex_state = 10}, - [1633] = {.lex_state = 39, .external_lex_state = 11}, - [1634] = {.lex_state = 39, .external_lex_state = 11}, - [1635] = {.lex_state = 39, .external_lex_state = 11}, - [1636] = {.lex_state = 39, .external_lex_state = 8}, - [1637] = {.lex_state = 39, .external_lex_state = 11}, - [1638] = {.lex_state = 39, .external_lex_state = 11}, - [1639] = {.lex_state = 39, .external_lex_state = 11}, - [1640] = {.lex_state = 3, .external_lex_state = 10}, - [1641] = {.lex_state = 39, .external_lex_state = 11}, - [1642] = {.lex_state = 39, .external_lex_state = 12}, - [1643] = {.lex_state = 39, .external_lex_state = 9}, - [1644] = {.lex_state = 39, .external_lex_state = 11}, - [1645] = {.lex_state = 39, .external_lex_state = 8}, - [1646] = {.lex_state = 39, .external_lex_state = 11}, - [1647] = {.lex_state = 39, .external_lex_state = 11}, - [1648] = {.lex_state = 39, .external_lex_state = 11}, - [1649] = {.lex_state = 39, .external_lex_state = 11}, - [1650] = {.lex_state = 39, .external_lex_state = 11}, - [1651] = {.lex_state = 39, .external_lex_state = 9}, + [1630] = {.lex_state = 39, .external_lex_state = 3}, + [1631] = {.lex_state = 39, .external_lex_state = 3}, + [1632] = {.lex_state = 39, .external_lex_state = 3}, + [1633] = {.lex_state = 39, .external_lex_state = 2}, + [1634] = {.lex_state = 39, .external_lex_state = 3}, + [1635] = {.lex_state = 39, .external_lex_state = 3}, + [1636] = {.lex_state = 39, .external_lex_state = 3}, + [1637] = {.lex_state = 39, .external_lex_state = 3}, + [1638] = {.lex_state = 3, .external_lex_state = 10}, + [1639] = {.lex_state = 39, .external_lex_state = 3}, + [1640] = {.lex_state = 39, .external_lex_state = 3}, + [1641] = {.lex_state = 39, .external_lex_state = 3}, + [1642] = {.lex_state = 39, .external_lex_state = 3}, + [1643] = {.lex_state = 39, .external_lex_state = 2}, + [1644] = {.lex_state = 39, .external_lex_state = 12}, + [1645] = {.lex_state = 3, .external_lex_state = 10}, + [1646] = {.lex_state = 39, .external_lex_state = 12}, + [1647] = {.lex_state = 39, .external_lex_state = 2}, + [1648] = {.lex_state = 39, .external_lex_state = 12}, + [1649] = {.lex_state = 39, .external_lex_state = 8}, + [1650] = {.lex_state = 39, .external_lex_state = 8}, + [1651] = {.lex_state = 39, .external_lex_state = 8}, [1652] = {.lex_state = 39, .external_lex_state = 3}, - [1653] = {.lex_state = 39, .external_lex_state = 3}, - [1654] = {.lex_state = 39, .external_lex_state = 3}, - [1655] = {.lex_state = 39, .external_lex_state = 11}, - [1656] = {.lex_state = 39, .external_lex_state = 9}, - [1657] = {.lex_state = 39, .external_lex_state = 11}, - [1658] = {.lex_state = 39, .external_lex_state = 11}, - [1659] = {.lex_state = 39, .external_lex_state = 3}, - [1660] = {.lex_state = 39, .external_lex_state = 9}, - [1661] = {.lex_state = 39, .external_lex_state = 11}, - [1662] = {.lex_state = 39, .external_lex_state = 11}, + [1653] = {.lex_state = 3, .external_lex_state = 10}, + [1654] = {.lex_state = 3, .external_lex_state = 10}, + [1655] = {.lex_state = 39, .external_lex_state = 12}, + [1656] = {.lex_state = 39, .external_lex_state = 12}, + [1657] = {.lex_state = 39, .external_lex_state = 12}, + [1658] = {.lex_state = 39, .external_lex_state = 12}, + [1659] = {.lex_state = 39, .external_lex_state = 12}, + [1660] = {.lex_state = 39, .external_lex_state = 12}, + [1661] = {.lex_state = 39, .external_lex_state = 12}, + [1662] = {.lex_state = 39, .external_lex_state = 12}, [1663] = {.lex_state = 39, .external_lex_state = 12}, - [1664] = {.lex_state = 39, .external_lex_state = 2}, - [1665] = {.lex_state = 39, .external_lex_state = 3}, - [1666] = {.lex_state = 39, .external_lex_state = 2}, - [1667] = {.lex_state = 39, .external_lex_state = 11}, - [1668] = {.lex_state = 39, .external_lex_state = 11}, - [1669] = {.lex_state = 39, .external_lex_state = 12}, - [1670] = {.lex_state = 39, .external_lex_state = 2}, + [1664] = {.lex_state = 39, .external_lex_state = 12}, + [1665] = {.lex_state = 39, .external_lex_state = 12}, + [1666] = {.lex_state = 3, .external_lex_state = 10}, + [1667] = {.lex_state = 3, .external_lex_state = 10}, + [1668] = {.lex_state = 39, .external_lex_state = 12}, + [1669] = {.lex_state = 3, .external_lex_state = 10}, + [1670] = {.lex_state = 39, .external_lex_state = 12}, [1671] = {.lex_state = 39, .external_lex_state = 12}, - [1672] = {.lex_state = 39, .external_lex_state = 8}, - [1673] = {.lex_state = 39, .external_lex_state = 11}, - [1674] = {.lex_state = 39, .external_lex_state = 12}, - [1675] = {.lex_state = 39, .external_lex_state = 8}, - [1676] = {.lex_state = 39, .external_lex_state = 8}, - [1677] = {.lex_state = 39, .external_lex_state = 11}, - [1678] = {.lex_state = 39, .external_lex_state = 12}, - [1679] = {.lex_state = 39, .external_lex_state = 11}, + [1672] = {.lex_state = 3, .external_lex_state = 10}, + [1673] = {.lex_state = 39, .external_lex_state = 12}, + [1674] = {.lex_state = 39, .external_lex_state = 9}, + [1675] = {.lex_state = 39, .external_lex_state = 12}, + [1676] = {.lex_state = 39, .external_lex_state = 2}, + [1677] = {.lex_state = 39, .external_lex_state = 12}, + [1678] = {.lex_state = 3, .external_lex_state = 10}, + [1679] = {.lex_state = 39, .external_lex_state = 12}, [1680] = {.lex_state = 39, .external_lex_state = 2}, [1681] = {.lex_state = 39, .external_lex_state = 2}, - [1682] = {.lex_state = 39, .external_lex_state = 2}, - [1683] = {.lex_state = 39, .external_lex_state = 11}, - [1684] = {.lex_state = 39, .external_lex_state = 11}, + [1682] = {.lex_state = 39, .external_lex_state = 12}, + [1683] = {.lex_state = 39, .external_lex_state = 12}, + [1684] = {.lex_state = 39, .external_lex_state = 12}, [1685] = {.lex_state = 39, .external_lex_state = 11}, - [1686] = {.lex_state = 39, .external_lex_state = 11}, - [1687] = {.lex_state = 39, .external_lex_state = 2}, - [1688] = {.lex_state = 39, .external_lex_state = 11}, + [1686] = {.lex_state = 39, .external_lex_state = 12}, + [1687] = {.lex_state = 39, .external_lex_state = 12}, + [1688] = {.lex_state = 39, .external_lex_state = 2}, [1689] = {.lex_state = 39, .external_lex_state = 12}, - [1690] = {.lex_state = 39, .external_lex_state = 11}, - [1691] = {.lex_state = 39, .external_lex_state = 11}, - [1692] = {.lex_state = 39, .external_lex_state = 11}, - [1693] = {.lex_state = 39, .external_lex_state = 11}, - [1694] = {.lex_state = 39, .external_lex_state = 3}, - [1695] = {.lex_state = 39, .external_lex_state = 8}, - [1696] = {.lex_state = 39, .external_lex_state = 11}, - [1697] = {.lex_state = 39, .external_lex_state = 11}, + [1690] = {.lex_state = 39, .external_lex_state = 12}, + [1691] = {.lex_state = 3, .external_lex_state = 10}, + [1692] = {.lex_state = 3, .external_lex_state = 10}, + [1693] = {.lex_state = 3, .external_lex_state = 10}, + [1694] = {.lex_state = 39, .external_lex_state = 12}, + [1695] = {.lex_state = 3, .external_lex_state = 10}, + [1696] = {.lex_state = 39, .external_lex_state = 12}, + [1697] = {.lex_state = 39, .external_lex_state = 12}, [1698] = {.lex_state = 39, .external_lex_state = 12}, - [1699] = {.lex_state = 39, .external_lex_state = 9}, - [1700] = {.lex_state = 39, .external_lex_state = 8}, - [1701] = {.lex_state = 39, .external_lex_state = 8}, - [1702] = {.lex_state = 39, .external_lex_state = 2}, + [1699] = {.lex_state = 3, .external_lex_state = 10}, + [1700] = {.lex_state = 39, .external_lex_state = 2}, + [1701] = {.lex_state = 39, .external_lex_state = 12}, + [1702] = {.lex_state = 39, .external_lex_state = 11}, [1703] = {.lex_state = 39, .external_lex_state = 12}, - [1704] = {.lex_state = 39, .external_lex_state = 12}, - [1705] = {.lex_state = 39, .external_lex_state = 2}, - [1706] = {.lex_state = 39, .external_lex_state = 8}, - [1707] = {.lex_state = 39, .external_lex_state = 3}, + [1704] = {.lex_state = 39, .external_lex_state = 2}, + [1705] = {.lex_state = 39, .external_lex_state = 11}, + [1706] = {.lex_state = 39, .external_lex_state = 2}, + [1707] = {.lex_state = 39, .external_lex_state = 11}, [1708] = {.lex_state = 39, .external_lex_state = 2}, [1709] = {.lex_state = 39, .external_lex_state = 9}, - [1710] = {.lex_state = 39, .external_lex_state = 12}, - [1711] = {.lex_state = 39, .external_lex_state = 2}, - [1712] = {.lex_state = 3, .external_lex_state = 10}, - [1713] = {.lex_state = 3, .external_lex_state = 10}, - [1714] = {.lex_state = 39, .external_lex_state = 12}, - [1715] = {.lex_state = 39, .external_lex_state = 9}, - [1716] = {.lex_state = 39, .external_lex_state = 12}, + [1710] = {.lex_state = 39, .external_lex_state = 11}, + [1711] = {.lex_state = 39, .external_lex_state = 11}, + [1712] = {.lex_state = 39, .external_lex_state = 2}, + [1713] = {.lex_state = 39, .external_lex_state = 11}, + [1714] = {.lex_state = 39, .external_lex_state = 9}, + [1715] = {.lex_state = 39, .external_lex_state = 11}, + [1716] = {.lex_state = 39, .external_lex_state = 8}, [1717] = {.lex_state = 39, .external_lex_state = 2}, - [1718] = {.lex_state = 39, .external_lex_state = 12}, + [1718] = {.lex_state = 39, .external_lex_state = 11}, [1719] = {.lex_state = 39, .external_lex_state = 12}, - [1720] = {.lex_state = 39, .external_lex_state = 8}, - [1721] = {.lex_state = 39, .external_lex_state = 10}, - [1722] = {.lex_state = 39, .external_lex_state = 3}, - [1723] = {.lex_state = 39, .external_lex_state = 9}, - [1724] = {.lex_state = 39, .external_lex_state = 3}, - [1725] = {.lex_state = 39, .external_lex_state = 11}, - [1726] = {.lex_state = 39, .external_lex_state = 2}, + [1720] = {.lex_state = 39, .external_lex_state = 9}, + [1721] = {.lex_state = 39, .external_lex_state = 11}, + [1722] = {.lex_state = 39, .external_lex_state = 12}, + [1723] = {.lex_state = 39, .external_lex_state = 8}, + [1724] = {.lex_state = 39, .external_lex_state = 8}, + [1725] = {.lex_state = 39, .external_lex_state = 8}, + [1726] = {.lex_state = 39, .external_lex_state = 8}, [1727] = {.lex_state = 39, .external_lex_state = 11}, [1728] = {.lex_state = 39, .external_lex_state = 11}, [1729] = {.lex_state = 39, .external_lex_state = 11}, - [1730] = {.lex_state = 3, .external_lex_state = 10}, - [1731] = {.lex_state = 39, .external_lex_state = 2}, - [1732] = {.lex_state = 39, .external_lex_state = 3}, - [1733] = {.lex_state = 39, .external_lex_state = 3}, - [1734] = {.lex_state = 39, .external_lex_state = 2}, - [1735] = {.lex_state = 39, .external_lex_state = 3}, - [1736] = {.lex_state = 39, .external_lex_state = 8}, - [1737] = {.lex_state = 39, .external_lex_state = 3}, - [1738] = {.lex_state = 39, .external_lex_state = 3}, - [1739] = {.lex_state = 39, .external_lex_state = 3}, - [1740] = {.lex_state = 39, .external_lex_state = 2}, - [1741] = {.lex_state = 39, .external_lex_state = 3}, - [1742] = {.lex_state = 39, .external_lex_state = 12}, - [1743] = {.lex_state = 39, .external_lex_state = 8}, - [1744] = {.lex_state = 39, .external_lex_state = 12}, - [1745] = {.lex_state = 39, .external_lex_state = 2}, - [1746] = {.lex_state = 39, .external_lex_state = 12}, - [1747] = {.lex_state = 39, .external_lex_state = 3}, - [1748] = {.lex_state = 39, .external_lex_state = 2}, - [1749] = {.lex_state = 39, .external_lex_state = 8}, - [1750] = {.lex_state = 39, .external_lex_state = 9}, - [1751] = {.lex_state = 39, .external_lex_state = 12}, - [1752] = {.lex_state = 39, .external_lex_state = 3}, - [1753] = {.lex_state = 39, .external_lex_state = 2}, - [1754] = {.lex_state = 3, .external_lex_state = 10}, - [1755] = {.lex_state = 39, .external_lex_state = 12}, - [1756] = {.lex_state = 39, .external_lex_state = 2}, - [1757] = {.lex_state = 39, .external_lex_state = 9}, - [1758] = {.lex_state = 3, .external_lex_state = 10}, - [1759] = {.lex_state = 39, .external_lex_state = 2}, - [1760] = {.lex_state = 39, .external_lex_state = 12}, - [1761] = {.lex_state = 39, .external_lex_state = 11}, - [1762] = {.lex_state = 39, .external_lex_state = 12}, - [1763] = {.lex_state = 39, .external_lex_state = 12}, - [1764] = {.lex_state = 39, .external_lex_state = 11}, - [1765] = {.lex_state = 39, .external_lex_state = 3}, - [1766] = {.lex_state = 39, .external_lex_state = 12}, - [1767] = {.lex_state = 39, .external_lex_state = 2}, - [1768] = {.lex_state = 39, .external_lex_state = 12}, - [1769] = {.lex_state = 39, .external_lex_state = 3}, - [1770] = {.lex_state = 39, .external_lex_state = 12}, - [1771] = {.lex_state = 39, .external_lex_state = 3}, - [1772] = {.lex_state = 39, .external_lex_state = 12}, + [1730] = {.lex_state = 39, .external_lex_state = 11}, + [1731] = {.lex_state = 39, .external_lex_state = 11}, + [1732] = {.lex_state = 39, .external_lex_state = 11}, + [1733] = {.lex_state = 39, .external_lex_state = 11}, + [1734] = {.lex_state = 39, .external_lex_state = 11}, + [1735] = {.lex_state = 39, .external_lex_state = 11}, + [1736] = {.lex_state = 39, .external_lex_state = 11}, + [1737] = {.lex_state = 39, .external_lex_state = 11}, + [1738] = {.lex_state = 39, .external_lex_state = 11}, + [1739] = {.lex_state = 39, .external_lex_state = 11}, + [1740] = {.lex_state = 39, .external_lex_state = 11}, + [1741] = {.lex_state = 39, .external_lex_state = 11}, + [1742] = {.lex_state = 39, .external_lex_state = 11}, + [1743] = {.lex_state = 39, .external_lex_state = 11}, + [1744] = {.lex_state = 39, .external_lex_state = 11}, + [1745] = {.lex_state = 39, .external_lex_state = 11}, + [1746] = {.lex_state = 39, .external_lex_state = 8}, + [1747] = {.lex_state = 39, .external_lex_state = 8}, + [1748] = {.lex_state = 39, .external_lex_state = 11}, + [1749] = {.lex_state = 39, .external_lex_state = 11}, + [1750] = {.lex_state = 39, .external_lex_state = 11}, + [1751] = {.lex_state = 39, .external_lex_state = 11}, + [1752] = {.lex_state = 39, .external_lex_state = 11}, + [1753] = {.lex_state = 39, .external_lex_state = 11}, + [1754] = {.lex_state = 39, .external_lex_state = 11}, + [1755] = {.lex_state = 39, .external_lex_state = 11}, + [1756] = {.lex_state = 39, .external_lex_state = 8}, + [1757] = {.lex_state = 39, .external_lex_state = 2}, + [1758] = {.lex_state = 39, .external_lex_state = 11}, + [1759] = {.lex_state = 39, .external_lex_state = 11}, + [1760] = {.lex_state = 39, .external_lex_state = 2}, + [1761] = {.lex_state = 39, .external_lex_state = 2}, + [1762] = {.lex_state = 39, .external_lex_state = 11}, + [1763] = {.lex_state = 3, .external_lex_state = 10}, + [1764] = {.lex_state = 3, .external_lex_state = 10}, + [1765] = {.lex_state = 3, .external_lex_state = 10}, + [1766] = {.lex_state = 3, .external_lex_state = 10}, + [1767] = {.lex_state = 39, .external_lex_state = 12}, + [1768] = {.lex_state = 39, .external_lex_state = 11}, + [1769] = {.lex_state = 39, .external_lex_state = 11}, + [1770] = {.lex_state = 39, .external_lex_state = 11}, + [1771] = {.lex_state = 39, .external_lex_state = 11}, + [1772] = {.lex_state = 39, .external_lex_state = 11}, [1773] = {.lex_state = 39, .external_lex_state = 11}, - [1774] = {.lex_state = 39, .external_lex_state = 2}, - [1775] = {.lex_state = 39, .external_lex_state = 11}, - [1776] = {.lex_state = 39, .external_lex_state = 12}, - [1777] = {.lex_state = 3, .external_lex_state = 10}, + [1774] = {.lex_state = 39, .external_lex_state = 8}, + [1775] = {.lex_state = 39, .external_lex_state = 8}, + [1776] = {.lex_state = 39, .external_lex_state = 11}, + [1777] = {.lex_state = 39, .external_lex_state = 11}, [1778] = {.lex_state = 39, .external_lex_state = 11}, [1779] = {.lex_state = 39, .external_lex_state = 11}, - [1780] = {.lex_state = 39, .external_lex_state = 12}, + [1780] = {.lex_state = 39, .external_lex_state = 11}, [1781] = {.lex_state = 39, .external_lex_state = 11}, - [1782] = {.lex_state = 3, .external_lex_state = 10}, + [1782] = {.lex_state = 39, .external_lex_state = 8}, [1783] = {.lex_state = 39, .external_lex_state = 8}, - [1784] = {.lex_state = 39, .external_lex_state = 12}, + [1784] = {.lex_state = 39, .external_lex_state = 8}, [1785] = {.lex_state = 39, .external_lex_state = 8}, - [1786] = {.lex_state = 3, .external_lex_state = 10}, - [1787] = {.lex_state = 39, .external_lex_state = 12}, - [1788] = {.lex_state = 3, .external_lex_state = 10}, - [1789] = {.lex_state = 39, .external_lex_state = 12}, - [1790] = {.lex_state = 3, .external_lex_state = 10}, - [1791] = {.lex_state = 3, .external_lex_state = 10}, - [1792] = {.lex_state = 39, .external_lex_state = 12}, - [1793] = {.lex_state = 39, .external_lex_state = 12}, - [1794] = {.lex_state = 3, .external_lex_state = 10}, - [1795] = {.lex_state = 3, .external_lex_state = 10}, - [1796] = {.lex_state = 39, .external_lex_state = 3}, - [1797] = {.lex_state = 3, .external_lex_state = 10}, - [1798] = {.lex_state = 39, .external_lex_state = 12}, - [1799] = {.lex_state = 39, .external_lex_state = 11}, - [1800] = {.lex_state = 3, .external_lex_state = 10}, - [1801] = {.lex_state = 39, .external_lex_state = 11}, - [1802] = {.lex_state = 39, .external_lex_state = 3}, - [1803] = {.lex_state = 39, .external_lex_state = 3}, + [1786] = {.lex_state = 39, .external_lex_state = 8}, + [1787] = {.lex_state = 39, .external_lex_state = 8}, + [1788] = {.lex_state = 39, .external_lex_state = 8}, + [1789] = {.lex_state = 39, .external_lex_state = 8}, + [1790] = {.lex_state = 39, .external_lex_state = 8}, + [1791] = {.lex_state = 39, .external_lex_state = 9}, + [1792] = {.lex_state = 39, .external_lex_state = 8}, + [1793] = {.lex_state = 39, .external_lex_state = 8}, + [1794] = {.lex_state = 39, .external_lex_state = 8}, + [1795] = {.lex_state = 39, .external_lex_state = 8}, + [1796] = {.lex_state = 39, .external_lex_state = 8}, + [1797] = {.lex_state = 39, .external_lex_state = 8}, + [1798] = {.lex_state = 39, .external_lex_state = 8}, + [1799] = {.lex_state = 39, .external_lex_state = 8}, + [1800] = {.lex_state = 39, .external_lex_state = 8}, + [1801] = {.lex_state = 39, .external_lex_state = 8}, + [1802] = {.lex_state = 39, .external_lex_state = 8}, + [1803] = {.lex_state = 39, .external_lex_state = 9}, [1804] = {.lex_state = 39, .external_lex_state = 12}, - [1805] = {.lex_state = 39, .external_lex_state = 8}, - [1806] = {.lex_state = 39, .external_lex_state = 11}, - [1807] = {.lex_state = 39, .external_lex_state = 3}, - [1808] = {.lex_state = 39, .external_lex_state = 11}, - [1809] = {.lex_state = 39, .external_lex_state = 11}, - [1810] = {.lex_state = 39, .external_lex_state = 12}, - [1811] = {.lex_state = 3, .external_lex_state = 10}, - [1812] = {.lex_state = 3, .external_lex_state = 10}, - [1813] = {.lex_state = 39, .external_lex_state = 12}, - [1814] = {.lex_state = 39, .external_lex_state = 12}, - [1815] = {.lex_state = 39, .external_lex_state = 12}, + [1805] = {.lex_state = 39, .external_lex_state = 12}, + [1806] = {.lex_state = 39, .external_lex_state = 12}, + [1807] = {.lex_state = 39, .external_lex_state = 8}, + [1808] = {.lex_state = 39, .external_lex_state = 8}, + [1809] = {.lex_state = 39, .external_lex_state = 8}, + [1810] = {.lex_state = 39, .external_lex_state = 8}, + [1811] = {.lex_state = 39, .external_lex_state = 8}, + [1812] = {.lex_state = 39, .external_lex_state = 12}, + [1813] = {.lex_state = 39, .external_lex_state = 8}, + [1814] = {.lex_state = 39, .external_lex_state = 8}, + [1815] = {.lex_state = 39, .external_lex_state = 8}, [1816] = {.lex_state = 39, .external_lex_state = 8}, - [1817] = {.lex_state = 39, .external_lex_state = 2}, - [1818] = {.lex_state = 39, .external_lex_state = 11}, - [1819] = {.lex_state = 39, .external_lex_state = 11}, + [1817] = {.lex_state = 39, .external_lex_state = 12}, + [1818] = {.lex_state = 39, .external_lex_state = 12}, + [1819] = {.lex_state = 39, .external_lex_state = 12}, [1820] = {.lex_state = 39, .external_lex_state = 8}, - [1821] = {.lex_state = 39, .external_lex_state = 11}, - [1822] = {.lex_state = 39, .external_lex_state = 12}, - [1823] = {.lex_state = 39, .external_lex_state = 12}, - [1824] = {.lex_state = 39, .external_lex_state = 2}, - [1825] = {.lex_state = 39, .external_lex_state = 11}, - [1826] = {.lex_state = 39, .external_lex_state = 11}, - [1827] = {.lex_state = 39, .external_lex_state = 11}, - [1828] = {.lex_state = 39, .external_lex_state = 12}, - [1829] = {.lex_state = 39, .external_lex_state = 12}, + [1821] = {.lex_state = 3, .external_lex_state = 10}, + [1822] = {.lex_state = 3, .external_lex_state = 10}, + [1823] = {.lex_state = 3, .external_lex_state = 10}, + [1824] = {.lex_state = 3, .external_lex_state = 10}, + [1825] = {.lex_state = 3, .external_lex_state = 10}, + [1826] = {.lex_state = 3, .external_lex_state = 10}, + [1827] = {.lex_state = 39, .external_lex_state = 8}, + [1828] = {.lex_state = 3, .external_lex_state = 10}, + [1829] = {.lex_state = 3, .external_lex_state = 10}, [1830] = {.lex_state = 39, .external_lex_state = 8}, [1831] = {.lex_state = 3, .external_lex_state = 10}, - [1832] = {.lex_state = 39, .external_lex_state = 8}, - [1833] = {.lex_state = 3, .external_lex_state = 10}, + [1832] = {.lex_state = 39, .external_lex_state = 9}, + [1833] = {.lex_state = 39, .external_lex_state = 12}, [1834] = {.lex_state = 3, .external_lex_state = 10}, [1835] = {.lex_state = 3, .external_lex_state = 10}, [1836] = {.lex_state = 39, .external_lex_state = 8}, [1837] = {.lex_state = 3, .external_lex_state = 10}, - [1838] = {.lex_state = 39, .external_lex_state = 12}, + [1838] = {.lex_state = 39, .external_lex_state = 8}, [1839] = {.lex_state = 3, .external_lex_state = 10}, - [1840] = {.lex_state = 39, .external_lex_state = 9}, + [1840] = {.lex_state = 3, .external_lex_state = 10}, [1841] = {.lex_state = 3, .external_lex_state = 10}, [1842] = {.lex_state = 39, .external_lex_state = 12}, [1843] = {.lex_state = 3, .external_lex_state = 10}, @@ -9726,273 +9657,273 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1847] = {.lex_state = 3, .external_lex_state = 10}, [1848] = {.lex_state = 3, .external_lex_state = 10}, [1849] = {.lex_state = 3, .external_lex_state = 10}, - [1850] = {.lex_state = 39, .external_lex_state = 12}, - [1851] = {.lex_state = 39, .external_lex_state = 12}, - [1852] = {.lex_state = 3, .external_lex_state = 10}, + [1850] = {.lex_state = 3, .external_lex_state = 10}, + [1851] = {.lex_state = 3, .external_lex_state = 10}, + [1852] = {.lex_state = 39, .external_lex_state = 8}, [1853] = {.lex_state = 3, .external_lex_state = 10}, - [1854] = {.lex_state = 39, .external_lex_state = 8}, - [1855] = {.lex_state = 39, .external_lex_state = 8}, + [1854] = {.lex_state = 3, .external_lex_state = 10}, + [1855] = {.lex_state = 3, .external_lex_state = 10}, [1856] = {.lex_state = 3, .external_lex_state = 10}, [1857] = {.lex_state = 39, .external_lex_state = 8}, - [1858] = {.lex_state = 39, .external_lex_state = 8}, - [1859] = {.lex_state = 39, .external_lex_state = 8}, - [1860] = {.lex_state = 3, .external_lex_state = 10}, + [1858] = {.lex_state = 3, .external_lex_state = 10}, + [1859] = {.lex_state = 39, .external_lex_state = 12}, + [1860] = {.lex_state = 39, .external_lex_state = 12}, [1861] = {.lex_state = 39, .external_lex_state = 8}, - [1862] = {.lex_state = 39, .external_lex_state = 8}, - [1863] = {.lex_state = 3, .external_lex_state = 10}, - [1864] = {.lex_state = 39, .external_lex_state = 8}, + [1862] = {.lex_state = 3, .external_lex_state = 10}, + [1863] = {.lex_state = 39, .external_lex_state = 12}, + [1864] = {.lex_state = 3, .external_lex_state = 10}, [1865] = {.lex_state = 3, .external_lex_state = 10}, [1866] = {.lex_state = 3, .external_lex_state = 10}, [1867] = {.lex_state = 39, .external_lex_state = 8}, - [1868] = {.lex_state = 39, .external_lex_state = 8}, - [1869] = {.lex_state = 39, .external_lex_state = 8}, - [1870] = {.lex_state = 3, .external_lex_state = 10}, - [1871] = {.lex_state = 39, .external_lex_state = 12}, + [1868] = {.lex_state = 3, .external_lex_state = 10}, + [1869] = {.lex_state = 39, .external_lex_state = 12}, + [1870] = {.lex_state = 39, .external_lex_state = 8}, + [1871] = {.lex_state = 3, .external_lex_state = 10}, [1872] = {.lex_state = 3, .external_lex_state = 10}, [1873] = {.lex_state = 39, .external_lex_state = 8}, - [1874] = {.lex_state = 3, .external_lex_state = 10}, - [1875] = {.lex_state = 39, .external_lex_state = 12}, + [1874] = {.lex_state = 39, .external_lex_state = 12}, + [1875] = {.lex_state = 3, .external_lex_state = 10}, [1876] = {.lex_state = 3, .external_lex_state = 10}, - [1877] = {.lex_state = 3, .external_lex_state = 10}, - [1878] = {.lex_state = 39, .external_lex_state = 8}, + [1877] = {.lex_state = 39, .external_lex_state = 8}, + [1878] = {.lex_state = 39, .external_lex_state = 12}, [1879] = {.lex_state = 39, .external_lex_state = 8}, - [1880] = {.lex_state = 39, .external_lex_state = 8}, - [1881] = {.lex_state = 3, .external_lex_state = 10}, + [1880] = {.lex_state = 3, .external_lex_state = 10}, + [1881] = {.lex_state = 39, .external_lex_state = 12}, [1882] = {.lex_state = 3, .external_lex_state = 10}, - [1883] = {.lex_state = 39, .external_lex_state = 8}, - [1884] = {.lex_state = 39, .external_lex_state = 12}, - [1885] = {.lex_state = 39, .external_lex_state = 8}, - [1886] = {.lex_state = 39, .external_lex_state = 8}, - [1887] = {.lex_state = 3, .external_lex_state = 10}, - [1888] = {.lex_state = 39, .external_lex_state = 8}, - [1889] = {.lex_state = 39, .external_lex_state = 8}, + [1883] = {.lex_state = 39, .external_lex_state = 12}, + [1884] = {.lex_state = 3, .external_lex_state = 10}, + [1885] = {.lex_state = 3, .external_lex_state = 10}, + [1886] = {.lex_state = 3, .external_lex_state = 10}, + [1887] = {.lex_state = 39, .external_lex_state = 12}, + [1888] = {.lex_state = 3, .external_lex_state = 10}, + [1889] = {.lex_state = 3, .external_lex_state = 10}, [1890] = {.lex_state = 3, .external_lex_state = 10}, - [1891] = {.lex_state = 39, .external_lex_state = 8}, - [1892] = {.lex_state = 39, .external_lex_state = 8}, - [1893] = {.lex_state = 39, .external_lex_state = 12}, + [1891] = {.lex_state = 3, .external_lex_state = 10}, + [1892] = {.lex_state = 39, .external_lex_state = 12}, + [1893] = {.lex_state = 3, .external_lex_state = 10}, [1894] = {.lex_state = 39, .external_lex_state = 8}, - [1895] = {.lex_state = 39, .external_lex_state = 12}, - [1896] = {.lex_state = 3, .external_lex_state = 10}, + [1895] = {.lex_state = 3, .external_lex_state = 10}, + [1896] = {.lex_state = 39, .external_lex_state = 8}, [1897] = {.lex_state = 3, .external_lex_state = 10}, [1898] = {.lex_state = 3, .external_lex_state = 10}, [1899] = {.lex_state = 39, .external_lex_state = 8}, [1900] = {.lex_state = 39, .external_lex_state = 8}, - [1901] = {.lex_state = 39, .external_lex_state = 8}, - [1902] = {.lex_state = 3, .external_lex_state = 10}, + [1901] = {.lex_state = 3, .external_lex_state = 10}, + [1902] = {.lex_state = 39, .external_lex_state = 8}, [1903] = {.lex_state = 3, .external_lex_state = 10}, - [1904] = {.lex_state = 3, .external_lex_state = 10}, - [1905] = {.lex_state = 39, .external_lex_state = 12}, - [1906] = {.lex_state = 3, .external_lex_state = 10}, + [1904] = {.lex_state = 39, .external_lex_state = 8}, + [1905] = {.lex_state = 39, .external_lex_state = 8}, + [1906] = {.lex_state = 39, .external_lex_state = 8}, [1907] = {.lex_state = 39, .external_lex_state = 8}, [1908] = {.lex_state = 39, .external_lex_state = 8}, [1909] = {.lex_state = 39, .external_lex_state = 8}, - [1910] = {.lex_state = 3, .external_lex_state = 10}, - [1911] = {.lex_state = 39, .external_lex_state = 12}, - [1912] = {.lex_state = 3, .external_lex_state = 10}, - [1913] = {.lex_state = 3, .external_lex_state = 10}, + [1910] = {.lex_state = 39, .external_lex_state = 12}, + [1911] = {.lex_state = 39, .external_lex_state = 9}, + [1912] = {.lex_state = 39, .external_lex_state = 5}, + [1913] = {.lex_state = 39, .external_lex_state = 5}, [1914] = {.lex_state = 39, .external_lex_state = 12}, - [1915] = {.lex_state = 3, .external_lex_state = 10}, - [1916] = {.lex_state = 3, .external_lex_state = 10}, - [1917] = {.lex_state = 39, .external_lex_state = 8}, - [1918] = {.lex_state = 39, .external_lex_state = 8}, - [1919] = {.lex_state = 3, .external_lex_state = 10}, - [1920] = {.lex_state = 39, .external_lex_state = 8}, + [1915] = {.lex_state = 39, .external_lex_state = 9}, + [1916] = {.lex_state = 39, .external_lex_state = 9}, + [1917] = {.lex_state = 39, .external_lex_state = 12}, + [1918] = {.lex_state = 39, .external_lex_state = 9}, + [1919] = {.lex_state = 39, .external_lex_state = 12}, + [1920] = {.lex_state = 39, .external_lex_state = 12}, [1921] = {.lex_state = 39, .external_lex_state = 12}, - [1922] = {.lex_state = 39, .external_lex_state = 12}, - [1923] = {.lex_state = 39, .external_lex_state = 8}, - [1924] = {.lex_state = 3, .external_lex_state = 10}, - [1925] = {.lex_state = 3, .external_lex_state = 10}, - [1926] = {.lex_state = 39, .external_lex_state = 8}, - [1927] = {.lex_state = 3, .external_lex_state = 10}, - [1928] = {.lex_state = 39, .external_lex_state = 8}, - [1929] = {.lex_state = 39, .external_lex_state = 8}, - [1930] = {.lex_state = 39, .external_lex_state = 8}, - [1931] = {.lex_state = 39, .external_lex_state = 8}, - [1932] = {.lex_state = 39, .external_lex_state = 8}, - [1933] = {.lex_state = 39, .external_lex_state = 8}, - [1934] = {.lex_state = 39, .external_lex_state = 8}, - [1935] = {.lex_state = 3, .external_lex_state = 10}, - [1936] = {.lex_state = 3, .external_lex_state = 10}, - [1937] = {.lex_state = 3, .external_lex_state = 10}, - [1938] = {.lex_state = 3, .external_lex_state = 10}, - [1939] = {.lex_state = 39, .external_lex_state = 8}, - [1940] = {.lex_state = 3, .external_lex_state = 10}, - [1941] = {.lex_state = 39, .external_lex_state = 8}, - [1942] = {.lex_state = 39, .external_lex_state = 8}, - [1943] = {.lex_state = 39, .external_lex_state = 8}, - [1944] = {.lex_state = 39, .external_lex_state = 8}, - [1945] = {.lex_state = 39, .external_lex_state = 8}, + [1922] = {.lex_state = 39, .external_lex_state = 5}, + [1923] = {.lex_state = 39, .external_lex_state = 12}, + [1924] = {.lex_state = 39, .external_lex_state = 5}, + [1925] = {.lex_state = 39, .external_lex_state = 9}, + [1926] = {.lex_state = 39, .external_lex_state = 12}, + [1927] = {.lex_state = 39, .external_lex_state = 9}, + [1928] = {.lex_state = 39, .external_lex_state = 12}, + [1929] = {.lex_state = 39, .external_lex_state = 12}, + [1930] = {.lex_state = 39, .external_lex_state = 9}, + [1931] = {.lex_state = 39, .external_lex_state = 5}, + [1932] = {.lex_state = 39, .external_lex_state = 12}, + [1933] = {.lex_state = 39, .external_lex_state = 12}, + [1934] = {.lex_state = 39, .external_lex_state = 12}, + [1935] = {.lex_state = 39, .external_lex_state = 12}, + [1936] = {.lex_state = 39, .external_lex_state = 5}, + [1937] = {.lex_state = 39, .external_lex_state = 9}, + [1938] = {.lex_state = 39, .external_lex_state = 12}, + [1939] = {.lex_state = 39, .external_lex_state = 12}, + [1940] = {.lex_state = 39, .external_lex_state = 9}, + [1941] = {.lex_state = 39, .external_lex_state = 12}, + [1942] = {.lex_state = 39, .external_lex_state = 9}, + [1943] = {.lex_state = 39, .external_lex_state = 9}, + [1944] = {.lex_state = 39, .external_lex_state = 9}, + [1945] = {.lex_state = 39, .external_lex_state = 9}, [1946] = {.lex_state = 39, .external_lex_state = 12}, - [1947] = {.lex_state = 3, .external_lex_state = 10}, - [1948] = {.lex_state = 39, .external_lex_state = 8}, + [1947] = {.lex_state = 39, .external_lex_state = 12}, + [1948] = {.lex_state = 39, .external_lex_state = 9}, [1949] = {.lex_state = 39, .external_lex_state = 12}, - [1950] = {.lex_state = 39, .external_lex_state = 8}, - [1951] = {.lex_state = 39, .external_lex_state = 12}, - [1952] = {.lex_state = 3, .external_lex_state = 10}, - [1953] = {.lex_state = 39, .external_lex_state = 9}, - [1954] = {.lex_state = 39, .external_lex_state = 8}, - [1955] = {.lex_state = 39, .external_lex_state = 8}, - [1956] = {.lex_state = 39, .external_lex_state = 9}, - [1957] = {.lex_state = 3, .external_lex_state = 10}, - [1958] = {.lex_state = 39, .external_lex_state = 8}, - [1959] = {.lex_state = 3, .external_lex_state = 10}, - [1960] = {.lex_state = 39, .external_lex_state = 5}, + [1950] = {.lex_state = 39, .external_lex_state = 12}, + [1951] = {.lex_state = 39, .external_lex_state = 9}, + [1952] = {.lex_state = 39, .external_lex_state = 12}, + [1953] = {.lex_state = 39, .external_lex_state = 12}, + [1954] = {.lex_state = 39, .external_lex_state = 9}, + [1955] = {.lex_state = 39, .external_lex_state = 12}, + [1956] = {.lex_state = 39, .external_lex_state = 12}, + [1957] = {.lex_state = 39, .external_lex_state = 9}, + [1958] = {.lex_state = 39, .external_lex_state = 12}, + [1959] = {.lex_state = 39, .external_lex_state = 12}, + [1960] = {.lex_state = 39, .external_lex_state = 9}, [1961] = {.lex_state = 39, .external_lex_state = 12}, - [1962] = {.lex_state = 39, .external_lex_state = 5}, - [1963] = {.lex_state = 39, .external_lex_state = 9}, - [1964] = {.lex_state = 39, .external_lex_state = 5}, - [1965] = {.lex_state = 39, .external_lex_state = 9}, - [1966] = {.lex_state = 39, .external_lex_state = 9}, + [1962] = {.lex_state = 39, .external_lex_state = 9}, + [1963] = {.lex_state = 39, .external_lex_state = 12}, + [1964] = {.lex_state = 39, .external_lex_state = 12}, + [1965] = {.lex_state = 39, .external_lex_state = 12}, + [1966] = {.lex_state = 39, .external_lex_state = 12}, [1967] = {.lex_state = 39, .external_lex_state = 9}, - [1968] = {.lex_state = 39, .external_lex_state = 9}, - [1969] = {.lex_state = 39, .external_lex_state = 5}, - [1970] = {.lex_state = 39, .external_lex_state = 5}, - [1971] = {.lex_state = 39, .external_lex_state = 9}, + [1968] = {.lex_state = 39, .external_lex_state = 12}, + [1969] = {.lex_state = 39, .external_lex_state = 12}, + [1970] = {.lex_state = 39, .external_lex_state = 12}, + [1971] = {.lex_state = 39, .external_lex_state = 12}, [1972] = {.lex_state = 39, .external_lex_state = 12}, [1973] = {.lex_state = 39, .external_lex_state = 12}, [1974] = {.lex_state = 39, .external_lex_state = 12}, [1975] = {.lex_state = 39, .external_lex_state = 12}, [1976] = {.lex_state = 39, .external_lex_state = 12}, - [1977] = {.lex_state = 39, .external_lex_state = 12}, - [1978] = {.lex_state = 39, .external_lex_state = 12}, + [1977] = {.lex_state = 39, .external_lex_state = 9}, + [1978] = {.lex_state = 39, .external_lex_state = 5}, [1979] = {.lex_state = 39, .external_lex_state = 12}, [1980] = {.lex_state = 39, .external_lex_state = 12}, [1981] = {.lex_state = 39, .external_lex_state = 12}, - [1982] = {.lex_state = 39, .external_lex_state = 12}, + [1982] = {.lex_state = 39, .external_lex_state = 9}, [1983] = {.lex_state = 39, .external_lex_state = 12}, [1984] = {.lex_state = 39, .external_lex_state = 12}, [1985] = {.lex_state = 39, .external_lex_state = 12}, [1986] = {.lex_state = 39, .external_lex_state = 12}, - [1987] = {.lex_state = 39, .external_lex_state = 9}, + [1987] = {.lex_state = 39, .external_lex_state = 12}, [1988] = {.lex_state = 39, .external_lex_state = 12}, [1989] = {.lex_state = 39, .external_lex_state = 12}, [1990] = {.lex_state = 39, .external_lex_state = 12}, [1991] = {.lex_state = 39, .external_lex_state = 12}, [1992] = {.lex_state = 39, .external_lex_state = 9}, - [1993] = {.lex_state = 39, .external_lex_state = 12}, - [1994] = {.lex_state = 39, .external_lex_state = 12}, - [1995] = {.lex_state = 39, .external_lex_state = 12}, - [1996] = {.lex_state = 39, .external_lex_state = 12}, - [1997] = {.lex_state = 39, .external_lex_state = 12}, + [1993] = {.lex_state = 39, .external_lex_state = 9}, + [1994] = {.lex_state = 39, .external_lex_state = 9}, + [1995] = {.lex_state = 39, .external_lex_state = 9}, + [1996] = {.lex_state = 39, .external_lex_state = 9}, + [1997] = {.lex_state = 39, .external_lex_state = 9}, [1998] = {.lex_state = 39, .external_lex_state = 9}, [1999] = {.lex_state = 39, .external_lex_state = 9}, - [2000] = {.lex_state = 39, .external_lex_state = 12}, - [2001] = {.lex_state = 39, .external_lex_state = 12}, - [2002] = {.lex_state = 39, .external_lex_state = 9}, - [2003] = {.lex_state = 39, .external_lex_state = 12}, - [2004] = {.lex_state = 39, .external_lex_state = 12}, - [2005] = {.lex_state = 39, .external_lex_state = 12}, - [2006] = {.lex_state = 39, .external_lex_state = 12}, + [2000] = {.lex_state = 39, .external_lex_state = 9}, + [2001] = {.lex_state = 39, .external_lex_state = 5}, + [2002] = {.lex_state = 39, .external_lex_state = 7}, + [2003] = {.lex_state = 39, .external_lex_state = 7}, + [2004] = {.lex_state = 39, .external_lex_state = 6}, + [2005] = {.lex_state = 39, .external_lex_state = 5}, + [2006] = {.lex_state = 39, .external_lex_state = 7}, [2007] = {.lex_state = 39, .external_lex_state = 5}, - [2008] = {.lex_state = 39, .external_lex_state = 12}, - [2009] = {.lex_state = 39, .external_lex_state = 12}, - [2010] = {.lex_state = 39, .external_lex_state = 9}, - [2011] = {.lex_state = 39, .external_lex_state = 9}, - [2012] = {.lex_state = 39, .external_lex_state = 9}, - [2013] = {.lex_state = 39, .external_lex_state = 9}, - [2014] = {.lex_state = 39, .external_lex_state = 9}, - [2015] = {.lex_state = 39, .external_lex_state = 9}, - [2016] = {.lex_state = 39, .external_lex_state = 9}, - [2017] = {.lex_state = 39, .external_lex_state = 12}, - [2018] = {.lex_state = 39, .external_lex_state = 12}, - [2019] = {.lex_state = 39, .external_lex_state = 12}, - [2020] = {.lex_state = 39, .external_lex_state = 9}, - [2021] = {.lex_state = 39, .external_lex_state = 9}, - [2022] = {.lex_state = 39, .external_lex_state = 12}, - [2023] = {.lex_state = 39, .external_lex_state = 12}, - [2024] = {.lex_state = 39, .external_lex_state = 12}, - [2025] = {.lex_state = 39, .external_lex_state = 12}, - [2026] = {.lex_state = 39, .external_lex_state = 12}, - [2027] = {.lex_state = 39, .external_lex_state = 12}, - [2028] = {.lex_state = 39, .external_lex_state = 12}, - [2029] = {.lex_state = 39, .external_lex_state = 12}, - [2030] = {.lex_state = 39, .external_lex_state = 12}, - [2031] = {.lex_state = 39, .external_lex_state = 12}, - [2032] = {.lex_state = 39, .external_lex_state = 12}, - [2033] = {.lex_state = 39, .external_lex_state = 12}, - [2034] = {.lex_state = 39, .external_lex_state = 12}, - [2035] = {.lex_state = 39, .external_lex_state = 12}, - [2036] = {.lex_state = 39, .external_lex_state = 12}, - [2037] = {.lex_state = 39, .external_lex_state = 12}, - [2038] = {.lex_state = 39, .external_lex_state = 12}, + [2008] = {.lex_state = 39, .external_lex_state = 2}, + [2009] = {.lex_state = 39, .external_lex_state = 7}, + [2010] = {.lex_state = 39, .external_lex_state = 7}, + [2011] = {.lex_state = 39, .external_lex_state = 5}, + [2012] = {.lex_state = 39, .external_lex_state = 6}, + [2013] = {.lex_state = 39, .external_lex_state = 7}, + [2014] = {.lex_state = 39, .external_lex_state = 5}, + [2015] = {.lex_state = 39, .external_lex_state = 7}, + [2016] = {.lex_state = 39, .external_lex_state = 5}, + [2017] = {.lex_state = 39, .external_lex_state = 5}, + [2018] = {.lex_state = 39, .external_lex_state = 5}, + [2019] = {.lex_state = 39, .external_lex_state = 2}, + [2020] = {.lex_state = 39, .external_lex_state = 2}, + [2021] = {.lex_state = 39, .external_lex_state = 5}, + [2022] = {.lex_state = 39, .external_lex_state = 5}, + [2023] = {.lex_state = 39, .external_lex_state = 5}, + [2024] = {.lex_state = 39, .external_lex_state = 2}, + [2025] = {.lex_state = 39, .external_lex_state = 6}, + [2026] = {.lex_state = 39, .external_lex_state = 5}, + [2027] = {.lex_state = 39, .external_lex_state = 7}, + [2028] = {.lex_state = 39, .external_lex_state = 2}, + [2029] = {.lex_state = 39, .external_lex_state = 7}, + [2030] = {.lex_state = 39, .external_lex_state = 2}, + [2031] = {.lex_state = 39, .external_lex_state = 6}, + [2032] = {.lex_state = 39, .external_lex_state = 5}, + [2033] = {.lex_state = 39, .external_lex_state = 2}, + [2034] = {.lex_state = 39, .external_lex_state = 6}, + [2035] = {.lex_state = 39, .external_lex_state = 7}, + [2036] = {.lex_state = 39, .external_lex_state = 6}, + [2037] = {.lex_state = 39, .external_lex_state = 7}, + [2038] = {.lex_state = 39, .external_lex_state = 7}, [2039] = {.lex_state = 39, .external_lex_state = 5}, - [2040] = {.lex_state = 39, .external_lex_state = 9}, - [2041] = {.lex_state = 39, .external_lex_state = 12}, - [2042] = {.lex_state = 39, .external_lex_state = 12}, - [2043] = {.lex_state = 39, .external_lex_state = 9}, - [2044] = {.lex_state = 39, .external_lex_state = 9}, - [2045] = {.lex_state = 39, .external_lex_state = 5}, - [2046] = {.lex_state = 39, .external_lex_state = 9}, - [2047] = {.lex_state = 39, .external_lex_state = 9}, - [2048] = {.lex_state = 39, .external_lex_state = 9}, - [2049] = {.lex_state = 39, .external_lex_state = 9}, - [2050] = {.lex_state = 39, .external_lex_state = 9}, - [2051] = {.lex_state = 39, .external_lex_state = 9}, - [2052] = {.lex_state = 39, .external_lex_state = 9}, - [2053] = {.lex_state = 39, .external_lex_state = 9}, - [2054] = {.lex_state = 39, .external_lex_state = 9}, - [2055] = {.lex_state = 39, .external_lex_state = 5}, - [2056] = {.lex_state = 39, .external_lex_state = 7}, + [2040] = {.lex_state = 39, .external_lex_state = 2}, + [2041] = {.lex_state = 39, .external_lex_state = 6}, + [2042] = {.lex_state = 39, .external_lex_state = 5}, + [2043] = {.lex_state = 39, .external_lex_state = 5}, + [2044] = {.lex_state = 39, .external_lex_state = 5}, + [2045] = {.lex_state = 39, .external_lex_state = 7}, + [2046] = {.lex_state = 39, .external_lex_state = 2}, + [2047] = {.lex_state = 39, .external_lex_state = 7}, + [2048] = {.lex_state = 39, .external_lex_state = 6}, + [2049] = {.lex_state = 39, .external_lex_state = 7}, + [2050] = {.lex_state = 39, .external_lex_state = 2}, + [2051] = {.lex_state = 39, .external_lex_state = 6}, + [2052] = {.lex_state = 39, .external_lex_state = 5}, + [2053] = {.lex_state = 39, .external_lex_state = 5}, + [2054] = {.lex_state = 39, .external_lex_state = 5}, + [2055] = {.lex_state = 39, .external_lex_state = 2}, + [2056] = {.lex_state = 39, .external_lex_state = 2}, [2057] = {.lex_state = 39, .external_lex_state = 2}, - [2058] = {.lex_state = 39, .external_lex_state = 5}, - [2059] = {.lex_state = 39, .external_lex_state = 7}, - [2060] = {.lex_state = 39, .external_lex_state = 6}, - [2061] = {.lex_state = 39, .external_lex_state = 5}, + [2058] = {.lex_state = 39, .external_lex_state = 2}, + [2059] = {.lex_state = 39, .external_lex_state = 2}, + [2060] = {.lex_state = 39, .external_lex_state = 2}, + [2061] = {.lex_state = 39, .external_lex_state = 2}, [2062] = {.lex_state = 39, .external_lex_state = 2}, - [2063] = {.lex_state = 39, .external_lex_state = 6}, - [2064] = {.lex_state = 39, .external_lex_state = 7}, - [2065] = {.lex_state = 39, .external_lex_state = 5}, - [2066] = {.lex_state = 39, .external_lex_state = 5}, - [2067] = {.lex_state = 39, .external_lex_state = 6}, - [2068] = {.lex_state = 39, .external_lex_state = 7}, - [2069] = {.lex_state = 39, .external_lex_state = 7}, - [2070] = {.lex_state = 39, .external_lex_state = 6}, - [2071] = {.lex_state = 39, .external_lex_state = 5}, - [2072] = {.lex_state = 39, .external_lex_state = 5}, - [2073] = {.lex_state = 39, .external_lex_state = 6}, - [2074] = {.lex_state = 39, .external_lex_state = 5}, - [2075] = {.lex_state = 39, .external_lex_state = 5}, - [2076] = {.lex_state = 39, .external_lex_state = 7}, - [2077] = {.lex_state = 39, .external_lex_state = 7}, + [2063] = {.lex_state = 39, .external_lex_state = 2}, + [2064] = {.lex_state = 39, .external_lex_state = 2}, + [2065] = {.lex_state = 39, .external_lex_state = 2}, + [2066] = {.lex_state = 39, .external_lex_state = 2}, + [2067] = {.lex_state = 39, .external_lex_state = 2}, + [2068] = {.lex_state = 39, .external_lex_state = 2}, + [2069] = {.lex_state = 39, .external_lex_state = 2}, + [2070] = {.lex_state = 39, .external_lex_state = 2}, + [2071] = {.lex_state = 39, .external_lex_state = 2}, + [2072] = {.lex_state = 39, .external_lex_state = 2}, + [2073] = {.lex_state = 39, .external_lex_state = 2}, + [2074] = {.lex_state = 39, .external_lex_state = 2}, + [2075] = {.lex_state = 39, .external_lex_state = 2}, + [2076] = {.lex_state = 39, .external_lex_state = 2}, + [2077] = {.lex_state = 39, .external_lex_state = 2}, [2078] = {.lex_state = 39, .external_lex_state = 2}, - [2079] = {.lex_state = 39, .external_lex_state = 7}, - [2080] = {.lex_state = 39, .external_lex_state = 6}, - [2081] = {.lex_state = 39, .external_lex_state = 7}, - [2082] = {.lex_state = 39, .external_lex_state = 5}, - [2083] = {.lex_state = 39, .external_lex_state = 5}, + [2079] = {.lex_state = 39, .external_lex_state = 2}, + [2080] = {.lex_state = 39, .external_lex_state = 2}, + [2081] = {.lex_state = 39, .external_lex_state = 2}, + [2082] = {.lex_state = 39, .external_lex_state = 2}, + [2083] = {.lex_state = 39, .external_lex_state = 2}, [2084] = {.lex_state = 39, .external_lex_state = 2}, - [2085] = {.lex_state = 39, .external_lex_state = 6}, - [2086] = {.lex_state = 39, .external_lex_state = 7}, - [2087] = {.lex_state = 39, .external_lex_state = 5}, - [2088] = {.lex_state = 39, .external_lex_state = 5}, - [2089] = {.lex_state = 39, .external_lex_state = 5}, - [2090] = {.lex_state = 39, .external_lex_state = 6}, - [2091] = {.lex_state = 39, .external_lex_state = 7}, - [2092] = {.lex_state = 39, .external_lex_state = 7}, - [2093] = {.lex_state = 39, .external_lex_state = 7}, + [2085] = {.lex_state = 39, .external_lex_state = 2}, + [2086] = {.lex_state = 39, .external_lex_state = 2}, + [2087] = {.lex_state = 39, .external_lex_state = 2}, + [2088] = {.lex_state = 39, .external_lex_state = 10}, + [2089] = {.lex_state = 39, .external_lex_state = 2}, + [2090] = {.lex_state = 39, .external_lex_state = 2}, + [2091] = {.lex_state = 39, .external_lex_state = 2}, + [2092] = {.lex_state = 39, .external_lex_state = 2}, + [2093] = {.lex_state = 39, .external_lex_state = 2}, [2094] = {.lex_state = 39, .external_lex_state = 2}, - [2095] = {.lex_state = 39, .external_lex_state = 5}, - [2096] = {.lex_state = 39, .external_lex_state = 5}, + [2095] = {.lex_state = 39, .external_lex_state = 10}, + [2096] = {.lex_state = 39, .external_lex_state = 2}, [2097] = {.lex_state = 39, .external_lex_state = 2}, - [2098] = {.lex_state = 39, .external_lex_state = 5}, + [2098] = {.lex_state = 39, .external_lex_state = 10}, [2099] = {.lex_state = 39, .external_lex_state = 2}, - [2100] = {.lex_state = 39, .external_lex_state = 5}, + [2100] = {.lex_state = 39, .external_lex_state = 2}, [2101] = {.lex_state = 39, .external_lex_state = 2}, - [2102] = {.lex_state = 39, .external_lex_state = 6}, - [2103] = {.lex_state = 39, .external_lex_state = 7}, + [2102] = {.lex_state = 39, .external_lex_state = 2}, + [2103] = {.lex_state = 39, .external_lex_state = 2}, [2104] = {.lex_state = 39, .external_lex_state = 2}, - [2105] = {.lex_state = 39, .external_lex_state = 5}, + [2105] = {.lex_state = 39, .external_lex_state = 2}, [2106] = {.lex_state = 39, .external_lex_state = 2}, - [2107] = {.lex_state = 39, .external_lex_state = 5}, - [2108] = {.lex_state = 39, .external_lex_state = 7}, - [2109] = {.lex_state = 39, .external_lex_state = 10}, + [2107] = {.lex_state = 39, .external_lex_state = 2}, + [2108] = {.lex_state = 39, .external_lex_state = 2}, + [2109] = {.lex_state = 39, .external_lex_state = 2}, [2110] = {.lex_state = 39, .external_lex_state = 2}, [2111] = {.lex_state = 39, .external_lex_state = 2}, [2112] = {.lex_state = 39, .external_lex_state = 2}, [2113] = {.lex_state = 39, .external_lex_state = 2}, [2114] = {.lex_state = 39, .external_lex_state = 2}, [2115] = {.lex_state = 39, .external_lex_state = 2}, - [2116] = {.lex_state = 39, .external_lex_state = 2}, + [2116] = {.lex_state = 39, .external_lex_state = 10}, [2117] = {.lex_state = 39, .external_lex_state = 2}, [2118] = {.lex_state = 39, .external_lex_state = 2}, [2119] = {.lex_state = 39, .external_lex_state = 2}, @@ -10000,7 +9931,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2121] = {.lex_state = 39, .external_lex_state = 2}, [2122] = {.lex_state = 39, .external_lex_state = 2}, [2123] = {.lex_state = 39, .external_lex_state = 2}, - [2124] = {.lex_state = 39, .external_lex_state = 2}, + [2124] = {.lex_state = 39, .external_lex_state = 9}, [2125] = {.lex_state = 39, .external_lex_state = 2}, [2126] = {.lex_state = 39, .external_lex_state = 2}, [2127] = {.lex_state = 39, .external_lex_state = 2}, @@ -10026,1145 +9957,1083 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2147] = {.lex_state = 39, .external_lex_state = 2}, [2148] = {.lex_state = 39, .external_lex_state = 2}, [2149] = {.lex_state = 39, .external_lex_state = 2}, - [2150] = {.lex_state = 39, .external_lex_state = 2}, + [2150] = {.lex_state = 39, .external_lex_state = 10}, [2151] = {.lex_state = 39, .external_lex_state = 2}, - [2152] = {.lex_state = 39, .external_lex_state = 2}, - [2153] = {.lex_state = 39, .external_lex_state = 10}, - [2154] = {.lex_state = 39, .external_lex_state = 2}, - [2155] = {.lex_state = 39, .external_lex_state = 2}, - [2156] = {.lex_state = 39, .external_lex_state = 2}, - [2157] = {.lex_state = 39, .external_lex_state = 10}, - [2158] = {.lex_state = 39, .external_lex_state = 2}, - [2159] = {.lex_state = 39, .external_lex_state = 10}, - [2160] = {.lex_state = 39, .external_lex_state = 2}, - [2161] = {.lex_state = 39, .external_lex_state = 2}, - [2162] = {.lex_state = 39, .external_lex_state = 2}, - [2163] = {.lex_state = 39, .external_lex_state = 2}, - [2164] = {.lex_state = 39, .external_lex_state = 2}, - [2165] = {.lex_state = 39, .external_lex_state = 2}, - [2166] = {.lex_state = 39, .external_lex_state = 2}, - [2167] = {.lex_state = 39, .external_lex_state = 2}, - [2168] = {.lex_state = 39, .external_lex_state = 2}, - [2169] = {.lex_state = 39, .external_lex_state = 9}, - [2170] = {.lex_state = 39, .external_lex_state = 2}, - [2171] = {.lex_state = 39, .external_lex_state = 2}, - [2172] = {.lex_state = 39, .external_lex_state = 2}, - [2173] = {.lex_state = 39, .external_lex_state = 2}, - [2174] = {.lex_state = 39, .external_lex_state = 2}, - [2175] = {.lex_state = 39, .external_lex_state = 2}, - [2176] = {.lex_state = 39, .external_lex_state = 2}, - [2177] = {.lex_state = 39, .external_lex_state = 2}, - [2178] = {.lex_state = 39, .external_lex_state = 2}, - [2179] = {.lex_state = 39, .external_lex_state = 2}, - [2180] = {.lex_state = 39, .external_lex_state = 2}, - [2181] = {.lex_state = 39, .external_lex_state = 2}, - [2182] = {.lex_state = 39, .external_lex_state = 2}, - [2183] = {.lex_state = 39, .external_lex_state = 2}, - [2184] = {.lex_state = 39, .external_lex_state = 2}, - [2185] = {.lex_state = 39, .external_lex_state = 2}, - [2186] = {.lex_state = 39, .external_lex_state = 2}, - [2187] = {.lex_state = 39, .external_lex_state = 2}, - [2188] = {.lex_state = 39, .external_lex_state = 2}, - [2189] = {.lex_state = 39, .external_lex_state = 2}, - [2190] = {.lex_state = 39, .external_lex_state = 2}, - [2191] = {.lex_state = 39, .external_lex_state = 2}, - [2192] = {.lex_state = 39, .external_lex_state = 2}, - [2193] = {.lex_state = 39, .external_lex_state = 2}, - [2194] = {.lex_state = 39, .external_lex_state = 10}, - [2195] = {.lex_state = 39, .external_lex_state = 2}, - [2196] = {.lex_state = 39, .external_lex_state = 2}, - [2197] = {.lex_state = 39, .external_lex_state = 2}, - [2198] = {.lex_state = 39, .external_lex_state = 2}, - [2199] = {.lex_state = 39, .external_lex_state = 2}, - [2200] = {.lex_state = 39, .external_lex_state = 2}, - [2201] = {.lex_state = 39, .external_lex_state = 2}, - [2202] = {.lex_state = 39, .external_lex_state = 2}, - [2203] = {.lex_state = 39, .external_lex_state = 2}, - [2204] = {.lex_state = 39, .external_lex_state = 2}, - [2205] = {.lex_state = 39, .external_lex_state = 2}, - [2206] = {.lex_state = 39, .external_lex_state = 9}, + [2152] = {.lex_state = 39, .external_lex_state = 9}, + [2153] = {.lex_state = 39, .external_lex_state = 9}, + [2154] = {.lex_state = 39, .external_lex_state = 9}, + [2155] = {.lex_state = 39, .external_lex_state = 9}, + [2156] = {.lex_state = 39, .external_lex_state = 9}, + [2157] = {.lex_state = 39, .external_lex_state = 11}, + [2158] = {.lex_state = 39, .external_lex_state = 11}, + [2159] = {.lex_state = 39, .external_lex_state = 11}, + [2160] = {.lex_state = 39, .external_lex_state = 11}, + [2161] = {.lex_state = 39, .external_lex_state = 11}, + [2162] = {.lex_state = 39, .external_lex_state = 8}, + [2163] = {.lex_state = 39, .external_lex_state = 9}, + [2164] = {.lex_state = 39, .external_lex_state = 9}, + [2165] = {.lex_state = 39, .external_lex_state = 8}, + [2166] = {.lex_state = 3, .external_lex_state = 10}, + [2167] = {.lex_state = 39, .external_lex_state = 9}, + [2168] = {.lex_state = 39, .external_lex_state = 8}, + [2169] = {.lex_state = 39, .external_lex_state = 8}, + [2170] = {.lex_state = 3, .external_lex_state = 10}, + [2171] = {.lex_state = 3, .external_lex_state = 10}, + [2172] = {.lex_state = 39, .external_lex_state = 9}, + [2173] = {.lex_state = 3, .external_lex_state = 10}, + [2174] = {.lex_state = 39, .external_lex_state = 8}, + [2175] = {.lex_state = 3, .external_lex_state = 10}, + [2176] = {.lex_state = 39, .external_lex_state = 9}, + [2177] = {.lex_state = 39, .external_lex_state = 12}, + [2178] = {.lex_state = 39, .external_lex_state = 12}, + [2179] = {.lex_state = 39, .external_lex_state = 12}, + [2180] = {.lex_state = 39, .external_lex_state = 12}, + [2181] = {.lex_state = 39, .external_lex_state = 12}, + [2182] = {.lex_state = 39, .external_lex_state = 9}, + [2183] = {.lex_state = 39, .external_lex_state = 9}, + [2184] = {.lex_state = 39, .external_lex_state = 9}, + [2185] = {.lex_state = 39, .external_lex_state = 9}, + [2186] = {.lex_state = 39, .external_lex_state = 9}, + [2187] = {.lex_state = 3, .external_lex_state = 5}, + [2188] = {.lex_state = 39, .external_lex_state = 10}, + [2189] = {.lex_state = 39, .external_lex_state = 5}, + [2190] = {.lex_state = 39, .external_lex_state = 10}, + [2191] = {.lex_state = 39, .external_lex_state = 10}, + [2192] = {.lex_state = 39, .external_lex_state = 8}, + [2193] = {.lex_state = 39, .external_lex_state = 5}, + [2194] = {.lex_state = 39, .external_lex_state = 5}, + [2195] = {.lex_state = 39, .external_lex_state = 5}, + [2196] = {.lex_state = 39, .external_lex_state = 5}, + [2197] = {.lex_state = 39, .external_lex_state = 5}, + [2198] = {.lex_state = 39, .external_lex_state = 5}, + [2199] = {.lex_state = 39, .external_lex_state = 10}, + [2200] = {.lex_state = 39, .external_lex_state = 10}, + [2201] = {.lex_state = 3, .external_lex_state = 5}, + [2202] = {.lex_state = 39, .external_lex_state = 5}, + [2203] = {.lex_state = 39, .external_lex_state = 5}, + [2204] = {.lex_state = 39, .external_lex_state = 11}, + [2205] = {.lex_state = 39, .external_lex_state = 5}, + [2206] = {.lex_state = 39, .external_lex_state = 11}, [2207] = {.lex_state = 39, .external_lex_state = 9}, - [2208] = {.lex_state = 39, .external_lex_state = 9}, - [2209] = {.lex_state = 39, .external_lex_state = 9}, - [2210] = {.lex_state = 39, .external_lex_state = 9}, - [2211] = {.lex_state = 39, .external_lex_state = 11}, + [2208] = {.lex_state = 39, .external_lex_state = 11}, + [2209] = {.lex_state = 39, .external_lex_state = 11}, + [2210] = {.lex_state = 39, .external_lex_state = 11}, + [2211] = {.lex_state = 39, .external_lex_state = 9}, [2212] = {.lex_state = 39, .external_lex_state = 11}, [2213] = {.lex_state = 39, .external_lex_state = 11}, - [2214] = {.lex_state = 39, .external_lex_state = 11}, - [2215] = {.lex_state = 39, .external_lex_state = 11}, - [2216] = {.lex_state = 39, .external_lex_state = 9}, - [2217] = {.lex_state = 39, .external_lex_state = 9}, - [2218] = {.lex_state = 39, .external_lex_state = 9}, - [2219] = {.lex_state = 3, .external_lex_state = 10}, - [2220] = {.lex_state = 39, .external_lex_state = 8}, - [2221] = {.lex_state = 39, .external_lex_state = 8}, - [2222] = {.lex_state = 3, .external_lex_state = 10}, - [2223] = {.lex_state = 39, .external_lex_state = 8}, - [2224] = {.lex_state = 39, .external_lex_state = 8}, - [2225] = {.lex_state = 3, .external_lex_state = 10}, - [2226] = {.lex_state = 3, .external_lex_state = 10}, - [2227] = {.lex_state = 39, .external_lex_state = 9}, - [2228] = {.lex_state = 3, .external_lex_state = 10}, - [2229] = {.lex_state = 39, .external_lex_state = 9}, - [2230] = {.lex_state = 39, .external_lex_state = 8}, - [2231] = {.lex_state = 39, .external_lex_state = 12}, - [2232] = {.lex_state = 39, .external_lex_state = 12}, - [2233] = {.lex_state = 39, .external_lex_state = 12}, - [2234] = {.lex_state = 39, .external_lex_state = 12}, - [2235] = {.lex_state = 39, .external_lex_state = 12}, - [2236] = {.lex_state = 39, .external_lex_state = 9}, - [2237] = {.lex_state = 39, .external_lex_state = 9}, - [2238] = {.lex_state = 39, .external_lex_state = 9}, + [2214] = {.lex_state = 39, .external_lex_state = 5}, + [2215] = {.lex_state = 3, .external_lex_state = 2}, + [2216] = {.lex_state = 39, .external_lex_state = 11}, + [2217] = {.lex_state = 39, .external_lex_state = 11}, + [2218] = {.lex_state = 39, .external_lex_state = 5}, + [2219] = {.lex_state = 39, .external_lex_state = 5}, + [2220] = {.lex_state = 39, .external_lex_state = 9}, + [2221] = {.lex_state = 39, .external_lex_state = 9}, + [2222] = {.lex_state = 39, .external_lex_state = 9}, + [2223] = {.lex_state = 39, .external_lex_state = 2}, + [2224] = {.lex_state = 39, .external_lex_state = 2}, + [2225] = {.lex_state = 39, .external_lex_state = 9}, + [2226] = {.lex_state = 39, .external_lex_state = 9}, + [2227] = {.lex_state = 39, .external_lex_state = 11}, + [2228] = {.lex_state = 39, .external_lex_state = 10}, + [2229] = {.lex_state = 39, .external_lex_state = 11}, + [2230] = {.lex_state = 39, .external_lex_state = 11}, + [2231] = {.lex_state = 39, .external_lex_state = 11}, + [2232] = {.lex_state = 39, .external_lex_state = 11}, + [2233] = {.lex_state = 39, .external_lex_state = 11}, + [2234] = {.lex_state = 39, .external_lex_state = 11}, + [2235] = {.lex_state = 39, .external_lex_state = 9}, + [2236] = {.lex_state = 39, .external_lex_state = 10}, + [2237] = {.lex_state = 39, .external_lex_state = 10}, + [2238] = {.lex_state = 39, .external_lex_state = 10}, [2239] = {.lex_state = 39, .external_lex_state = 9}, - [2240] = {.lex_state = 39, .external_lex_state = 9}, - [2241] = {.lex_state = 39, .external_lex_state = 10}, - [2242] = {.lex_state = 39, .external_lex_state = 5}, - [2243] = {.lex_state = 3, .external_lex_state = 5}, - [2244] = {.lex_state = 39, .external_lex_state = 8}, - [2245] = {.lex_state = 39, .external_lex_state = 10}, - [2246] = {.lex_state = 39, .external_lex_state = 5}, - [2247] = {.lex_state = 39, .external_lex_state = 5}, - [2248] = {.lex_state = 39, .external_lex_state = 5}, - [2249] = {.lex_state = 39, .external_lex_state = 10}, + [2240] = {.lex_state = 39, .external_lex_state = 11}, + [2241] = {.lex_state = 39, .external_lex_state = 11}, + [2242] = {.lex_state = 39, .external_lex_state = 10}, + [2243] = {.lex_state = 39, .external_lex_state = 11}, + [2244] = {.lex_state = 39, .external_lex_state = 10}, + [2245] = {.lex_state = 39, .external_lex_state = 11}, + [2246] = {.lex_state = 39, .external_lex_state = 10}, + [2247] = {.lex_state = 39, .external_lex_state = 11}, + [2248] = {.lex_state = 39, .external_lex_state = 10}, + [2249] = {.lex_state = 39, .external_lex_state = 2}, [2250] = {.lex_state = 39, .external_lex_state = 10}, - [2251] = {.lex_state = 39, .external_lex_state = 5}, - [2252] = {.lex_state = 3, .external_lex_state = 5}, - [2253] = {.lex_state = 39, .external_lex_state = 10}, - [2254] = {.lex_state = 39, .external_lex_state = 10}, - [2255] = {.lex_state = 39, .external_lex_state = 5}, - [2256] = {.lex_state = 39, .external_lex_state = 5}, - [2257] = {.lex_state = 39, .external_lex_state = 5}, - [2258] = {.lex_state = 39, .external_lex_state = 5}, - [2259] = {.lex_state = 39, .external_lex_state = 5}, - [2260] = {.lex_state = 39, .external_lex_state = 5}, - [2261] = {.lex_state = 39, .external_lex_state = 11}, - [2262] = {.lex_state = 39, .external_lex_state = 11}, - [2263] = {.lex_state = 3, .external_lex_state = 2}, - [2264] = {.lex_state = 39, .external_lex_state = 9}, - [2265] = {.lex_state = 39, .external_lex_state = 5}, - [2266] = {.lex_state = 39, .external_lex_state = 11}, - [2267] = {.lex_state = 39, .external_lex_state = 9}, - [2268] = {.lex_state = 39, .external_lex_state = 11}, - [2269] = {.lex_state = 39, .external_lex_state = 11}, - [2270] = {.lex_state = 39, .external_lex_state = 11}, - [2271] = {.lex_state = 39, .external_lex_state = 5}, - [2272] = {.lex_state = 39, .external_lex_state = 11}, - [2273] = {.lex_state = 39, .external_lex_state = 11}, - [2274] = {.lex_state = 39, .external_lex_state = 11}, - [2275] = {.lex_state = 39, .external_lex_state = 9}, + [2251] = {.lex_state = 39, .external_lex_state = 11}, + [2252] = {.lex_state = 39, .external_lex_state = 11}, + [2253] = {.lex_state = 39, .external_lex_state = 11}, + [2254] = {.lex_state = 39, .external_lex_state = 12}, + [2255] = {.lex_state = 39, .external_lex_state = 2}, + [2256] = {.lex_state = 39, .external_lex_state = 2}, + [2257] = {.lex_state = 39, .external_lex_state = 2}, + [2258] = {.lex_state = 3, .external_lex_state = 10}, + [2259] = {.lex_state = 39, .external_lex_state = 12}, + [2260] = {.lex_state = 39, .external_lex_state = 8}, + [2261] = {.lex_state = 39, .external_lex_state = 2}, + [2262] = {.lex_state = 39, .external_lex_state = 12}, + [2263] = {.lex_state = 39, .external_lex_state = 2}, + [2264] = {.lex_state = 39, .external_lex_state = 8}, + [2265] = {.lex_state = 39, .external_lex_state = 9}, + [2266] = {.lex_state = 3, .external_lex_state = 10}, + [2267] = {.lex_state = 39, .external_lex_state = 2}, + [2268] = {.lex_state = 39, .external_lex_state = 2}, + [2269] = {.lex_state = 39, .external_lex_state = 9}, + [2270] = {.lex_state = 39, .external_lex_state = 9}, + [2271] = {.lex_state = 39, .external_lex_state = 9}, + [2272] = {.lex_state = 39, .external_lex_state = 2}, + [2273] = {.lex_state = 39, .external_lex_state = 8}, + [2274] = {.lex_state = 39, .external_lex_state = 2}, + [2275] = {.lex_state = 39, .external_lex_state = 2}, [2276] = {.lex_state = 39, .external_lex_state = 9}, - [2277] = {.lex_state = 39, .external_lex_state = 9}, - [2278] = {.lex_state = 39, .external_lex_state = 9}, - [2279] = {.lex_state = 39, .external_lex_state = 2}, - [2280] = {.lex_state = 39, .external_lex_state = 9}, - [2281] = {.lex_state = 39, .external_lex_state = 9}, - [2282] = {.lex_state = 39, .external_lex_state = 2}, + [2277] = {.lex_state = 39, .external_lex_state = 2}, + [2278] = {.lex_state = 39, .external_lex_state = 8}, + [2279] = {.lex_state = 39, .external_lex_state = 12}, + [2280] = {.lex_state = 39, .external_lex_state = 2}, + [2281] = {.lex_state = 39, .external_lex_state = 8}, + [2282] = {.lex_state = 39, .external_lex_state = 11}, [2283] = {.lex_state = 39, .external_lex_state = 9}, - [2284] = {.lex_state = 39, .external_lex_state = 11}, - [2285] = {.lex_state = 39, .external_lex_state = 10}, + [2284] = {.lex_state = 39, .external_lex_state = 2}, + [2285] = {.lex_state = 39, .external_lex_state = 2}, [2286] = {.lex_state = 39, .external_lex_state = 10}, - [2287] = {.lex_state = 39, .external_lex_state = 11}, + [2287] = {.lex_state = 39, .external_lex_state = 12}, [2288] = {.lex_state = 39, .external_lex_state = 11}, - [2289] = {.lex_state = 39, .external_lex_state = 10}, - [2290] = {.lex_state = 39, .external_lex_state = 11}, - [2291] = {.lex_state = 39, .external_lex_state = 11}, + [2289] = {.lex_state = 39, .external_lex_state = 12}, + [2290] = {.lex_state = 39, .external_lex_state = 8}, + [2291] = {.lex_state = 39, .external_lex_state = 2}, [2292] = {.lex_state = 39, .external_lex_state = 11}, - [2293] = {.lex_state = 39, .external_lex_state = 11}, - [2294] = {.lex_state = 39, .external_lex_state = 11}, - [2295] = {.lex_state = 39, .external_lex_state = 10}, - [2296] = {.lex_state = 39, .external_lex_state = 11}, - [2297] = {.lex_state = 39, .external_lex_state = 11}, - [2298] = {.lex_state = 39, .external_lex_state = 11}, - [2299] = {.lex_state = 39, .external_lex_state = 10}, - [2300] = {.lex_state = 39, .external_lex_state = 10}, - [2301] = {.lex_state = 39, .external_lex_state = 9}, - [2302] = {.lex_state = 39, .external_lex_state = 10}, - [2303] = {.lex_state = 39, .external_lex_state = 11}, - [2304] = {.lex_state = 39, .external_lex_state = 11}, - [2305] = {.lex_state = 39, .external_lex_state = 11}, - [2306] = {.lex_state = 39, .external_lex_state = 10}, - [2307] = {.lex_state = 39, .external_lex_state = 2}, - [2308] = {.lex_state = 39, .external_lex_state = 11}, - [2309] = {.lex_state = 39, .external_lex_state = 10}, - [2310] = {.lex_state = 39, .external_lex_state = 12}, - [2311] = {.lex_state = 39, .external_lex_state = 11}, - [2312] = {.lex_state = 3, .external_lex_state = 10}, - [2313] = {.lex_state = 39, .external_lex_state = 12}, - [2314] = {.lex_state = 3, .external_lex_state = 10}, - [2315] = {.lex_state = 3, .external_lex_state = 10}, - [2316] = {.lex_state = 3, .external_lex_state = 10}, - [2317] = {.lex_state = 39, .external_lex_state = 9}, - [2318] = {.lex_state = 3, .external_lex_state = 10}, - [2319] = {.lex_state = 39, .external_lex_state = 9}, - [2320] = {.lex_state = 3, .external_lex_state = 10}, - [2321] = {.lex_state = 39, .external_lex_state = 8}, - [2322] = {.lex_state = 39, .external_lex_state = 8}, + [2293] = {.lex_state = 39, .external_lex_state = 2}, + [2294] = {.lex_state = 39, .external_lex_state = 12}, + [2295] = {.lex_state = 3, .external_lex_state = 10}, + [2296] = {.lex_state = 39, .external_lex_state = 10}, + [2297] = {.lex_state = 39, .external_lex_state = 9}, + [2298] = {.lex_state = 3, .external_lex_state = 10}, + [2299] = {.lex_state = 39, .external_lex_state = 2}, + [2300] = {.lex_state = 3, .external_lex_state = 10}, + [2301] = {.lex_state = 39, .external_lex_state = 12}, + [2302] = {.lex_state = 39, .external_lex_state = 2}, + [2303] = {.lex_state = 3, .external_lex_state = 10}, + [2304] = {.lex_state = 39, .external_lex_state = 9}, + [2305] = {.lex_state = 39, .external_lex_state = 9}, + [2306] = {.lex_state = 39, .external_lex_state = 12}, + [2307] = {.lex_state = 3, .external_lex_state = 10}, + [2308] = {.lex_state = 39, .external_lex_state = 2}, + [2309] = {.lex_state = 39, .external_lex_state = 2}, + [2310] = {.lex_state = 39, .external_lex_state = 10}, + [2311] = {.lex_state = 39, .external_lex_state = 2}, + [2312] = {.lex_state = 39, .external_lex_state = 10}, + [2313] = {.lex_state = 39, .external_lex_state = 10}, + [2314] = {.lex_state = 39, .external_lex_state = 2}, + [2315] = {.lex_state = 39, .external_lex_state = 2}, + [2316] = {.lex_state = 39, .external_lex_state = 2}, + [2317] = {.lex_state = 39, .external_lex_state = 2}, + [2318] = {.lex_state = 39, .external_lex_state = 10}, + [2319] = {.lex_state = 39, .external_lex_state = 10}, + [2320] = {.lex_state = 39, .external_lex_state = 10}, + [2321] = {.lex_state = 39, .external_lex_state = 11}, + [2322] = {.lex_state = 39, .external_lex_state = 12}, [2323] = {.lex_state = 39, .external_lex_state = 2}, - [2324] = {.lex_state = 39, .external_lex_state = 12}, + [2324] = {.lex_state = 39, .external_lex_state = 11}, [2325] = {.lex_state = 39, .external_lex_state = 2}, [2326] = {.lex_state = 39, .external_lex_state = 2}, [2327] = {.lex_state = 39, .external_lex_state = 2}, - [2328] = {.lex_state = 39, .external_lex_state = 9}, - [2329] = {.lex_state = 39, .external_lex_state = 8}, - [2330] = {.lex_state = 39, .external_lex_state = 10}, - [2331] = {.lex_state = 39, .external_lex_state = 9}, - [2332] = {.lex_state = 39, .external_lex_state = 2}, - [2333] = {.lex_state = 39, .external_lex_state = 9}, - [2334] = {.lex_state = 39, .external_lex_state = 2}, - [2335] = {.lex_state = 39, .external_lex_state = 2}, + [2328] = {.lex_state = 39, .external_lex_state = 10}, + [2329] = {.lex_state = 39, .external_lex_state = 2}, + [2330] = {.lex_state = 39, .external_lex_state = 2}, + [2331] = {.lex_state = 39, .external_lex_state = 10}, + [2332] = {.lex_state = 39, .external_lex_state = 11}, + [2333] = {.lex_state = 39, .external_lex_state = 12}, + [2334] = {.lex_state = 39, .external_lex_state = 8}, + [2335] = {.lex_state = 39, .external_lex_state = 10}, [2336] = {.lex_state = 39, .external_lex_state = 2}, - [2337] = {.lex_state = 39, .external_lex_state = 9}, - [2338] = {.lex_state = 39, .external_lex_state = 10}, - [2339] = {.lex_state = 39, .external_lex_state = 2}, - [2340] = {.lex_state = 39, .external_lex_state = 12}, - [2341] = {.lex_state = 39, .external_lex_state = 9}, - [2342] = {.lex_state = 39, .external_lex_state = 2}, - [2343] = {.lex_state = 39, .external_lex_state = 8}, - [2344] = {.lex_state = 39, .external_lex_state = 11}, - [2345] = {.lex_state = 3, .external_lex_state = 10}, - [2346] = {.lex_state = 39, .external_lex_state = 11}, - [2347] = {.lex_state = 39, .external_lex_state = 12}, - [2348] = {.lex_state = 39, .external_lex_state = 12}, - [2349] = {.lex_state = 39, .external_lex_state = 2}, - [2350] = {.lex_state = 3, .external_lex_state = 10}, - [2351] = {.lex_state = 39, .external_lex_state = 8}, - [2352] = {.lex_state = 39, .external_lex_state = 9}, - [2353] = {.lex_state = 39, .external_lex_state = 2}, - [2354] = {.lex_state = 39, .external_lex_state = 9}, - [2355] = {.lex_state = 39, .external_lex_state = 2}, - [2356] = {.lex_state = 39, .external_lex_state = 9}, - [2357] = {.lex_state = 39, .external_lex_state = 2}, - [2358] = {.lex_state = 39, .external_lex_state = 2}, + [2337] = {.lex_state = 39, .external_lex_state = 8}, + [2338] = {.lex_state = 39, .external_lex_state = 2}, + [2339] = {.lex_state = 39, .external_lex_state = 10}, + [2340] = {.lex_state = 39, .external_lex_state = 8}, + [2341] = {.lex_state = 39, .external_lex_state = 10}, + [2342] = {.lex_state = 39, .external_lex_state = 12}, + [2343] = {.lex_state = 39, .external_lex_state = 10}, + [2344] = {.lex_state = 39, .external_lex_state = 10}, + [2345] = {.lex_state = 39, .external_lex_state = 10}, + [2346] = {.lex_state = 39, .external_lex_state = 2}, + [2347] = {.lex_state = 39, .external_lex_state = 11}, + [2348] = {.lex_state = 39, .external_lex_state = 11}, + [2349] = {.lex_state = 39, .external_lex_state = 10}, + [2350] = {.lex_state = 39, .external_lex_state = 10}, + [2351] = {.lex_state = 39, .external_lex_state = 2}, + [2352] = {.lex_state = 39, .external_lex_state = 12}, + [2353] = {.lex_state = 39, .external_lex_state = 10}, + [2354] = {.lex_state = 39, .external_lex_state = 12}, + [2355] = {.lex_state = 39, .external_lex_state = 11}, + [2356] = {.lex_state = 39, .external_lex_state = 10}, + [2357] = {.lex_state = 39, .external_lex_state = 8}, + [2358] = {.lex_state = 39, .external_lex_state = 10}, [2359] = {.lex_state = 39, .external_lex_state = 12}, - [2360] = {.lex_state = 39, .external_lex_state = 2}, + [2360] = {.lex_state = 39, .external_lex_state = 10}, [2361] = {.lex_state = 39, .external_lex_state = 2}, - [2362] = {.lex_state = 39, .external_lex_state = 8}, - [2363] = {.lex_state = 39, .external_lex_state = 8}, - [2364] = {.lex_state = 39, .external_lex_state = 12}, + [2362] = {.lex_state = 39, .external_lex_state = 12}, + [2363] = {.lex_state = 39, .external_lex_state = 9}, + [2364] = {.lex_state = 39, .external_lex_state = 9}, [2365] = {.lex_state = 39, .external_lex_state = 11}, - [2366] = {.lex_state = 39, .external_lex_state = 12}, - [2367] = {.lex_state = 39, .external_lex_state = 2}, - [2368] = {.lex_state = 39, .external_lex_state = 10}, - [2369] = {.lex_state = 39, .external_lex_state = 10}, - [2370] = {.lex_state = 39, .external_lex_state = 12}, - [2371] = {.lex_state = 39, .external_lex_state = 2}, + [2366] = {.lex_state = 39, .external_lex_state = 9}, + [2367] = {.lex_state = 39, .external_lex_state = 9}, + [2368] = {.lex_state = 39, .external_lex_state = 12}, + [2369] = {.lex_state = 39, .external_lex_state = 9}, + [2370] = {.lex_state = 39, .external_lex_state = 10}, + [2371] = {.lex_state = 39, .external_lex_state = 10}, [2372] = {.lex_state = 39, .external_lex_state = 10}, - [2373] = {.lex_state = 39, .external_lex_state = 10}, - [2374] = {.lex_state = 39, .external_lex_state = 12}, - [2375] = {.lex_state = 39, .external_lex_state = 10}, - [2376] = {.lex_state = 39, .external_lex_state = 2}, - [2377] = {.lex_state = 39, .external_lex_state = 10}, + [2373] = {.lex_state = 39, .external_lex_state = 12}, + [2374] = {.lex_state = 39, .external_lex_state = 10}, + [2375] = {.lex_state = 39, .external_lex_state = 9}, + [2376] = {.lex_state = 39, .external_lex_state = 10}, + [2377] = {.lex_state = 39, .external_lex_state = 11}, [2378] = {.lex_state = 39, .external_lex_state = 10}, - [2379] = {.lex_state = 39, .external_lex_state = 10}, + [2379] = {.lex_state = 39, .external_lex_state = 9}, [2380] = {.lex_state = 39, .external_lex_state = 10}, - [2381] = {.lex_state = 39, .external_lex_state = 2}, - [2382] = {.lex_state = 39, .external_lex_state = 2}, - [2383] = {.lex_state = 39, .external_lex_state = 10}, - [2384] = {.lex_state = 39, .external_lex_state = 2}, - [2385] = {.lex_state = 39, .external_lex_state = 2}, - [2386] = {.lex_state = 39, .external_lex_state = 12}, + [2381] = {.lex_state = 39, .external_lex_state = 10}, + [2382] = {.lex_state = 39, .external_lex_state = 10}, + [2383] = {.lex_state = 39, .external_lex_state = 9}, + [2384] = {.lex_state = 39, .external_lex_state = 8}, + [2385] = {.lex_state = 39, .external_lex_state = 10}, + [2386] = {.lex_state = 39, .external_lex_state = 9}, [2387] = {.lex_state = 39, .external_lex_state = 10}, - [2388] = {.lex_state = 39, .external_lex_state = 2}, - [2389] = {.lex_state = 39, .external_lex_state = 11}, - [2390] = {.lex_state = 39, .external_lex_state = 11}, - [2391] = {.lex_state = 39, .external_lex_state = 10}, - [2392] = {.lex_state = 39, .external_lex_state = 2}, - [2393] = {.lex_state = 39, .external_lex_state = 8}, - [2394] = {.lex_state = 39, .external_lex_state = 11}, - [2395] = {.lex_state = 39, .external_lex_state = 11}, - [2396] = {.lex_state = 39, .external_lex_state = 11}, - [2397] = {.lex_state = 39, .external_lex_state = 12}, + [2388] = {.lex_state = 39, .external_lex_state = 9}, + [2389] = {.lex_state = 39, .external_lex_state = 10}, + [2390] = {.lex_state = 39, .external_lex_state = 10}, + [2391] = {.lex_state = 39, .external_lex_state = 9}, + [2392] = {.lex_state = 39, .external_lex_state = 10}, + [2393] = {.lex_state = 39, .external_lex_state = 10}, + [2394] = {.lex_state = 39, .external_lex_state = 12}, + [2395] = {.lex_state = 39, .external_lex_state = 9}, + [2396] = {.lex_state = 39, .external_lex_state = 8}, + [2397] = {.lex_state = 39, .external_lex_state = 10}, [2398] = {.lex_state = 39, .external_lex_state = 10}, - [2399] = {.lex_state = 39, .external_lex_state = 10}, - [2400] = {.lex_state = 39, .external_lex_state = 8}, - [2401] = {.lex_state = 39, .external_lex_state = 2}, + [2399] = {.lex_state = 39, .external_lex_state = 11}, + [2400] = {.lex_state = 39, .external_lex_state = 10}, + [2401] = {.lex_state = 39, .external_lex_state = 9}, [2402] = {.lex_state = 39, .external_lex_state = 8}, - [2403] = {.lex_state = 39, .external_lex_state = 2}, - [2404] = {.lex_state = 39, .external_lex_state = 10}, - [2405] = {.lex_state = 39, .external_lex_state = 2}, - [2406] = {.lex_state = 39, .external_lex_state = 2}, - [2407] = {.lex_state = 39, .external_lex_state = 8}, - [2408] = {.lex_state = 39, .external_lex_state = 12}, - [2409] = {.lex_state = 39, .external_lex_state = 2}, + [2403] = {.lex_state = 39, .external_lex_state = 10}, + [2404] = {.lex_state = 39, .external_lex_state = 9}, + [2405] = {.lex_state = 39, .external_lex_state = 8}, + [2406] = {.lex_state = 39, .external_lex_state = 10}, + [2407] = {.lex_state = 39, .external_lex_state = 9}, + [2408] = {.lex_state = 39, .external_lex_state = 8}, + [2409] = {.lex_state = 39, .external_lex_state = 11}, [2410] = {.lex_state = 39, .external_lex_state = 10}, - [2411] = {.lex_state = 39, .external_lex_state = 2}, - [2412] = {.lex_state = 39, .external_lex_state = 11}, - [2413] = {.lex_state = 39, .external_lex_state = 2}, - [2414] = {.lex_state = 39, .external_lex_state = 12}, - [2415] = {.lex_state = 39, .external_lex_state = 12}, - [2416] = {.lex_state = 39, .external_lex_state = 2}, - [2417] = {.lex_state = 39, .external_lex_state = 12}, - [2418] = {.lex_state = 39, .external_lex_state = 2}, + [2411] = {.lex_state = 39, .external_lex_state = 9}, + [2412] = {.lex_state = 39, .external_lex_state = 10}, + [2413] = {.lex_state = 39, .external_lex_state = 9}, + [2414] = {.lex_state = 39, .external_lex_state = 9}, + [2415] = {.lex_state = 39, .external_lex_state = 9}, + [2416] = {.lex_state = 39, .external_lex_state = 10}, + [2417] = {.lex_state = 39, .external_lex_state = 9}, + [2418] = {.lex_state = 39, .external_lex_state = 11}, [2419] = {.lex_state = 39, .external_lex_state = 10}, - [2420] = {.lex_state = 39, .external_lex_state = 2}, - [2421] = {.lex_state = 39, .external_lex_state = 10}, + [2420] = {.lex_state = 39, .external_lex_state = 9}, + [2421] = {.lex_state = 39, .external_lex_state = 9}, [2422] = {.lex_state = 39, .external_lex_state = 10}, - [2423] = {.lex_state = 39, .external_lex_state = 10}, + [2423] = {.lex_state = 39, .external_lex_state = 9}, [2424] = {.lex_state = 39, .external_lex_state = 9}, - [2425] = {.lex_state = 39, .external_lex_state = 8}, - [2426] = {.lex_state = 39, .external_lex_state = 12}, + [2425] = {.lex_state = 39, .external_lex_state = 10}, + [2426] = {.lex_state = 39, .external_lex_state = 9}, [2427] = {.lex_state = 39, .external_lex_state = 10}, - [2428] = {.lex_state = 39, .external_lex_state = 10}, - [2429] = {.lex_state = 39, .external_lex_state = 10}, + [2428] = {.lex_state = 39, .external_lex_state = 9}, + [2429] = {.lex_state = 39, .external_lex_state = 9}, [2430] = {.lex_state = 39, .external_lex_state = 9}, - [2431] = {.lex_state = 39, .external_lex_state = 12}, - [2432] = {.lex_state = 39, .external_lex_state = 10}, - [2433] = {.lex_state = 39, .external_lex_state = 10}, - [2434] = {.lex_state = 39, .external_lex_state = 9}, - [2435] = {.lex_state = 39, .external_lex_state = 10}, - [2436] = {.lex_state = 39, .external_lex_state = 9}, + [2431] = {.lex_state = 39, .external_lex_state = 9}, + [2432] = {.lex_state = 39, .external_lex_state = 8}, + [2433] = {.lex_state = 39, .external_lex_state = 9}, + [2434] = {.lex_state = 39, .external_lex_state = 11}, + [2435] = {.lex_state = 39, .external_lex_state = 9}, + [2436] = {.lex_state = 39, .external_lex_state = 12}, [2437] = {.lex_state = 39, .external_lex_state = 9}, - [2438] = {.lex_state = 39, .external_lex_state = 10}, + [2438] = {.lex_state = 39, .external_lex_state = 9}, [2439] = {.lex_state = 39, .external_lex_state = 9}, - [2440] = {.lex_state = 39, .external_lex_state = 11}, - [2441] = {.lex_state = 39, .external_lex_state = 9}, - [2442] = {.lex_state = 39, .external_lex_state = 9}, - [2443] = {.lex_state = 39, .external_lex_state = 11}, + [2440] = {.lex_state = 39, .external_lex_state = 9}, + [2441] = {.lex_state = 39, .external_lex_state = 8}, + [2442] = {.lex_state = 39, .external_lex_state = 12}, + [2443] = {.lex_state = 39, .external_lex_state = 9}, [2444] = {.lex_state = 39, .external_lex_state = 9}, [2445] = {.lex_state = 39, .external_lex_state = 9}, - [2446] = {.lex_state = 39, .external_lex_state = 11}, + [2446] = {.lex_state = 39, .external_lex_state = 9}, [2447] = {.lex_state = 39, .external_lex_state = 9}, [2448] = {.lex_state = 39, .external_lex_state = 9}, [2449] = {.lex_state = 39, .external_lex_state = 9}, [2450] = {.lex_state = 39, .external_lex_state = 9}, - [2451] = {.lex_state = 39, .external_lex_state = 9}, - [2452] = {.lex_state = 39, .external_lex_state = 9}, + [2451] = {.lex_state = 39, .external_lex_state = 8}, + [2452] = {.lex_state = 39, .external_lex_state = 12}, [2453] = {.lex_state = 39, .external_lex_state = 9}, - [2454] = {.lex_state = 39, .external_lex_state = 9}, - [2455] = {.lex_state = 39, .external_lex_state = 11}, - [2456] = {.lex_state = 39, .external_lex_state = 9}, - [2457] = {.lex_state = 39, .external_lex_state = 10}, + [2454] = {.lex_state = 39, .external_lex_state = 12}, + [2455] = {.lex_state = 39, .external_lex_state = 8}, + [2456] = {.lex_state = 39, .external_lex_state = 11}, + [2457] = {.lex_state = 39, .external_lex_state = 9}, [2458] = {.lex_state = 39, .external_lex_state = 9}, [2459] = {.lex_state = 39, .external_lex_state = 10}, - [2460] = {.lex_state = 39, .external_lex_state = 9}, - [2461] = {.lex_state = 39, .external_lex_state = 9}, - [2462] = {.lex_state = 39, .external_lex_state = 10}, + [2460] = {.lex_state = 39, .external_lex_state = 10}, + [2461] = {.lex_state = 39, .external_lex_state = 10}, + [2462] = {.lex_state = 39, .external_lex_state = 9}, [2463] = {.lex_state = 39, .external_lex_state = 10}, [2464] = {.lex_state = 39, .external_lex_state = 10}, - [2465] = {.lex_state = 39, .external_lex_state = 10}, - [2466] = {.lex_state = 39, .external_lex_state = 12}, + [2465] = {.lex_state = 39, .external_lex_state = 12}, + [2466] = {.lex_state = 39, .external_lex_state = 9}, [2467] = {.lex_state = 39, .external_lex_state = 9}, - [2468] = {.lex_state = 39, .external_lex_state = 9}, - [2469] = {.lex_state = 39, .external_lex_state = 9}, - [2470] = {.lex_state = 39, .external_lex_state = 9}, - [2471] = {.lex_state = 39, .external_lex_state = 12}, - [2472] = {.lex_state = 39, .external_lex_state = 9}, + [2468] = {.lex_state = 39, .external_lex_state = 11}, + [2469] = {.lex_state = 39, .external_lex_state = 10}, + [2470] = {.lex_state = 39, .external_lex_state = 12}, + [2471] = {.lex_state = 39, .external_lex_state = 10}, + [2472] = {.lex_state = 39, .external_lex_state = 11}, [2473] = {.lex_state = 39, .external_lex_state = 9}, - [2474] = {.lex_state = 39, .external_lex_state = 8}, - [2475] = {.lex_state = 39, .external_lex_state = 9}, - [2476] = {.lex_state = 39, .external_lex_state = 11}, - [2477] = {.lex_state = 39, .external_lex_state = 10}, + [2474] = {.lex_state = 39, .external_lex_state = 9}, + [2475] = {.lex_state = 39, .external_lex_state = 10}, + [2476] = {.lex_state = 39, .external_lex_state = 10}, + [2477] = {.lex_state = 39, .external_lex_state = 9}, [2478] = {.lex_state = 39, .external_lex_state = 9}, - [2479] = {.lex_state = 39, .external_lex_state = 8}, + [2479] = {.lex_state = 39, .external_lex_state = 9}, [2480] = {.lex_state = 39, .external_lex_state = 9}, [2481] = {.lex_state = 39, .external_lex_state = 9}, - [2482] = {.lex_state = 39, .external_lex_state = 9}, + [2482] = {.lex_state = 39, .external_lex_state = 2}, [2483] = {.lex_state = 39, .external_lex_state = 9}, - [2484] = {.lex_state = 39, .external_lex_state = 9}, - [2485] = {.lex_state = 39, .external_lex_state = 9}, + [2484] = {.lex_state = 39, .external_lex_state = 2}, + [2485] = {.lex_state = 39, .external_lex_state = 2}, [2486] = {.lex_state = 39, .external_lex_state = 9}, [2487] = {.lex_state = 39, .external_lex_state = 9}, - [2488] = {.lex_state = 39, .external_lex_state = 11}, + [2488] = {.lex_state = 39, .external_lex_state = 2}, [2489] = {.lex_state = 39, .external_lex_state = 9}, [2490] = {.lex_state = 39, .external_lex_state = 9}, [2491] = {.lex_state = 39, .external_lex_state = 9}, - [2492] = {.lex_state = 39, .external_lex_state = 8}, - [2493] = {.lex_state = 39, .external_lex_state = 10}, + [2492] = {.lex_state = 39, .external_lex_state = 9}, + [2493] = {.lex_state = 39, .external_lex_state = 2}, [2494] = {.lex_state = 39, .external_lex_state = 9}, - [2495] = {.lex_state = 39, .external_lex_state = 10}, - [2496] = {.lex_state = 39, .external_lex_state = 9}, - [2497] = {.lex_state = 39, .external_lex_state = 10}, - [2498] = {.lex_state = 39, .external_lex_state = 10}, - [2499] = {.lex_state = 39, .external_lex_state = 9}, - [2500] = {.lex_state = 39, .external_lex_state = 10}, - [2501] = {.lex_state = 39, .external_lex_state = 10}, - [2502] = {.lex_state = 39, .external_lex_state = 12}, - [2503] = {.lex_state = 39, .external_lex_state = 10}, - [2504] = {.lex_state = 39, .external_lex_state = 10}, - [2505] = {.lex_state = 39, .external_lex_state = 8}, - [2506] = {.lex_state = 39, .external_lex_state = 10}, - [2507] = {.lex_state = 39, .external_lex_state = 11}, - [2508] = {.lex_state = 39, .external_lex_state = 8}, - [2509] = {.lex_state = 39, .external_lex_state = 9}, - [2510] = {.lex_state = 39, .external_lex_state = 12}, - [2511] = {.lex_state = 39, .external_lex_state = 10}, - [2512] = {.lex_state = 39, .external_lex_state = 9}, - [2513] = {.lex_state = 39, .external_lex_state = 11}, - [2514] = {.lex_state = 39, .external_lex_state = 9}, - [2515] = {.lex_state = 39, .external_lex_state = 9}, - [2516] = {.lex_state = 39, .external_lex_state = 11}, - [2517] = {.lex_state = 39, .external_lex_state = 8}, - [2518] = {.lex_state = 39, .external_lex_state = 10}, - [2519] = {.lex_state = 39, .external_lex_state = 10}, - [2520] = {.lex_state = 39, .external_lex_state = 8}, - [2521] = {.lex_state = 39, .external_lex_state = 10}, - [2522] = {.lex_state = 39, .external_lex_state = 10}, - [2523] = {.lex_state = 39, .external_lex_state = 10}, - [2524] = {.lex_state = 39, .external_lex_state = 12}, - [2525] = {.lex_state = 39, .external_lex_state = 10}, - [2526] = {.lex_state = 39, .external_lex_state = 9}, - [2527] = {.lex_state = 39, .external_lex_state = 10}, - [2528] = {.lex_state = 39, .external_lex_state = 12}, - [2529] = {.lex_state = 39, .external_lex_state = 10}, - [2530] = {.lex_state = 39, .external_lex_state = 10}, - [2531] = {.lex_state = 39, .external_lex_state = 9}, - [2532] = {.lex_state = 39, .external_lex_state = 9}, - [2533] = {.lex_state = 39, .external_lex_state = 12}, - [2534] = {.lex_state = 39, .external_lex_state = 10}, - [2535] = {.lex_state = 39, .external_lex_state = 8}, - [2536] = {.lex_state = 39, .external_lex_state = 10}, + [2495] = {.lex_state = 39, .external_lex_state = 2}, + [2496] = {.lex_state = 39, .external_lex_state = 8}, + [2497] = {.lex_state = 39, .external_lex_state = 2}, + [2498] = {.lex_state = 39, .external_lex_state = 9}, + [2499] = {.lex_state = 39, .external_lex_state = 2}, + [2500] = {.lex_state = 39, .external_lex_state = 2}, + [2501] = {.lex_state = 39, .external_lex_state = 9}, + [2502] = {.lex_state = 39, .external_lex_state = 9}, + [2503] = {.lex_state = 39, .external_lex_state = 9}, + [2504] = {.lex_state = 39, .external_lex_state = 9}, + [2505] = {.lex_state = 39, .external_lex_state = 9}, + [2506] = {.lex_state = 39, .external_lex_state = 9}, + [2507] = {.lex_state = 22, .external_lex_state = 13}, + [2508] = {.lex_state = 22, .external_lex_state = 13}, + [2509] = {.lex_state = 22, .external_lex_state = 13}, + [2510] = {.lex_state = 22, .external_lex_state = 13}, + [2511] = {.lex_state = 22, .external_lex_state = 13}, + [2512] = {.lex_state = 22, .external_lex_state = 13}, + [2513] = {.lex_state = 22, .external_lex_state = 13}, + [2514] = {.lex_state = 22, .external_lex_state = 13}, + [2515] = {.lex_state = 21, .external_lex_state = 9}, + [2516] = {.lex_state = 21, .external_lex_state = 9}, + [2517] = {.lex_state = 22, .external_lex_state = 13}, + [2518] = {.lex_state = 22, .external_lex_state = 13}, + [2519] = {.lex_state = 22, .external_lex_state = 13}, + [2520] = {.lex_state = 22, .external_lex_state = 13}, + [2521] = {.lex_state = 22, .external_lex_state = 13}, + [2522] = {.lex_state = 22, .external_lex_state = 13}, + [2523] = {.lex_state = 22, .external_lex_state = 13}, + [2524] = {.lex_state = 22, .external_lex_state = 13}, + [2525] = {.lex_state = 22, .external_lex_state = 13}, + [2526] = {.lex_state = 22, .external_lex_state = 13}, + [2527] = {.lex_state = 22, .external_lex_state = 13}, + [2528] = {.lex_state = 39, .external_lex_state = 9}, + [2529] = {.lex_state = 39, .external_lex_state = 9}, + [2530] = {.lex_state = 39, .external_lex_state = 9}, + [2531] = {.lex_state = 21, .external_lex_state = 9}, + [2532] = {.lex_state = 39, .external_lex_state = 8}, + [2533] = {.lex_state = 39, .external_lex_state = 9}, + [2534] = {.lex_state = 21, .external_lex_state = 9}, + [2535] = {.lex_state = 39, .external_lex_state = 9}, + [2536] = {.lex_state = 39, .external_lex_state = 12}, [2537] = {.lex_state = 39, .external_lex_state = 10}, - [2538] = {.lex_state = 39, .external_lex_state = 2}, - [2539] = {.lex_state = 39, .external_lex_state = 9}, + [2538] = {.lex_state = 39, .external_lex_state = 9}, + [2539] = {.lex_state = 39, .external_lex_state = 10}, [2540] = {.lex_state = 39, .external_lex_state = 9}, - [2541] = {.lex_state = 39, .external_lex_state = 2}, + [2541] = {.lex_state = 39, .external_lex_state = 10}, [2542] = {.lex_state = 39, .external_lex_state = 9}, - [2543] = {.lex_state = 39, .external_lex_state = 9}, + [2543] = {.lex_state = 39, .external_lex_state = 10}, [2544] = {.lex_state = 39, .external_lex_state = 9}, [2545] = {.lex_state = 39, .external_lex_state = 9}, - [2546] = {.lex_state = 39, .external_lex_state = 2}, + [2546] = {.lex_state = 39, .external_lex_state = 9}, [2547] = {.lex_state = 39, .external_lex_state = 9}, [2548] = {.lex_state = 39, .external_lex_state = 9}, - [2549] = {.lex_state = 39, .external_lex_state = 9}, - [2550] = {.lex_state = 39, .external_lex_state = 2}, + [2549] = {.lex_state = 22, .external_lex_state = 13}, + [2550] = {.lex_state = 39, .external_lex_state = 9}, [2551] = {.lex_state = 39, .external_lex_state = 9}, - [2552] = {.lex_state = 39, .external_lex_state = 2}, - [2553] = {.lex_state = 39, .external_lex_state = 9}, - [2554] = {.lex_state = 39, .external_lex_state = 9}, - [2555] = {.lex_state = 39, .external_lex_state = 2}, - [2556] = {.lex_state = 39, .external_lex_state = 2}, - [2557] = {.lex_state = 39, .external_lex_state = 9}, + [2552] = {.lex_state = 39, .external_lex_state = 10}, + [2553] = {.lex_state = 39, .external_lex_state = 10}, + [2554] = {.lex_state = 39, .external_lex_state = 11}, + [2555] = {.lex_state = 22, .external_lex_state = 13}, + [2556] = {.lex_state = 39, .external_lex_state = 9}, + [2557] = {.lex_state = 3, .external_lex_state = 10}, [2558] = {.lex_state = 39, .external_lex_state = 9}, [2559] = {.lex_state = 39, .external_lex_state = 9}, - [2560] = {.lex_state = 39, .external_lex_state = 9}, - [2561] = {.lex_state = 39, .external_lex_state = 9}, + [2560] = {.lex_state = 39, .external_lex_state = 10}, + [2561] = {.lex_state = 39, .external_lex_state = 10}, [2562] = {.lex_state = 39, .external_lex_state = 9}, [2563] = {.lex_state = 39, .external_lex_state = 9}, - [2564] = {.lex_state = 39, .external_lex_state = 2}, - [2565] = {.lex_state = 39, .external_lex_state = 2}, - [2566] = {.lex_state = 39, .external_lex_state = 8}, + [2564] = {.lex_state = 39, .external_lex_state = 9}, + [2565] = {.lex_state = 39, .external_lex_state = 11}, + [2566] = {.lex_state = 39, .external_lex_state = 10}, [2567] = {.lex_state = 39, .external_lex_state = 9}, [2568] = {.lex_state = 39, .external_lex_state = 9}, - [2569] = {.lex_state = 22, .external_lex_state = 13}, - [2570] = {.lex_state = 22, .external_lex_state = 13}, - [2571] = {.lex_state = 22, .external_lex_state = 13}, - [2572] = {.lex_state = 22, .external_lex_state = 13}, - [2573] = {.lex_state = 22, .external_lex_state = 13}, - [2574] = {.lex_state = 22, .external_lex_state = 13}, - [2575] = {.lex_state = 22, .external_lex_state = 13}, - [2576] = {.lex_state = 22, .external_lex_state = 13}, - [2577] = {.lex_state = 22, .external_lex_state = 13}, - [2578] = {.lex_state = 22, .external_lex_state = 13}, - [2579] = {.lex_state = 22, .external_lex_state = 13}, - [2580] = {.lex_state = 22, .external_lex_state = 13}, - [2581] = {.lex_state = 22, .external_lex_state = 13}, - [2582] = {.lex_state = 21, .external_lex_state = 9}, - [2583] = {.lex_state = 21, .external_lex_state = 9}, - [2584] = {.lex_state = 22, .external_lex_state = 13}, - [2585] = {.lex_state = 22, .external_lex_state = 13}, - [2586] = {.lex_state = 22, .external_lex_state = 13}, - [2587] = {.lex_state = 22, .external_lex_state = 13}, - [2588] = {.lex_state = 22, .external_lex_state = 13}, - [2589] = {.lex_state = 22, .external_lex_state = 13}, - [2590] = {.lex_state = 39, .external_lex_state = 8}, - [2591] = {.lex_state = 21, .external_lex_state = 9}, - [2592] = {.lex_state = 39, .external_lex_state = 9}, - [2593] = {.lex_state = 39, .external_lex_state = 9}, - [2594] = {.lex_state = 21, .external_lex_state = 9}, + [2569] = {.lex_state = 39, .external_lex_state = 9}, + [2570] = {.lex_state = 39, .external_lex_state = 9}, + [2571] = {.lex_state = 39, .external_lex_state = 9}, + [2572] = {.lex_state = 39, .external_lex_state = 9}, + [2573] = {.lex_state = 39, .external_lex_state = 10}, + [2574] = {.lex_state = 39, .external_lex_state = 9}, + [2575] = {.lex_state = 39, .external_lex_state = 9}, + [2576] = {.lex_state = 39, .external_lex_state = 9}, + [2577] = {.lex_state = 39, .external_lex_state = 12}, + [2578] = {.lex_state = 39, .external_lex_state = 9}, + [2579] = {.lex_state = 39, .external_lex_state = 9}, + [2580] = {.lex_state = 39, .external_lex_state = 9}, + [2581] = {.lex_state = 3, .external_lex_state = 10}, + [2582] = {.lex_state = 39, .external_lex_state = 9}, + [2583] = {.lex_state = 39, .external_lex_state = 10}, + [2584] = {.lex_state = 39, .external_lex_state = 11}, + [2585] = {.lex_state = 39, .external_lex_state = 10}, + [2586] = {.lex_state = 39, .external_lex_state = 9}, + [2587] = {.lex_state = 39, .external_lex_state = 9}, + [2588] = {.lex_state = 39, .external_lex_state = 12}, + [2589] = {.lex_state = 39, .external_lex_state = 12}, + [2590] = {.lex_state = 39, .external_lex_state = 12}, + [2591] = {.lex_state = 39, .external_lex_state = 9}, + [2592] = {.lex_state = 39, .external_lex_state = 12}, + [2593] = {.lex_state = 39, .external_lex_state = 12}, + [2594] = {.lex_state = 39, .external_lex_state = 9}, [2595] = {.lex_state = 39, .external_lex_state = 9}, - [2596] = {.lex_state = 39, .external_lex_state = 9}, - [2597] = {.lex_state = 39, .external_lex_state = 9}, - [2598] = {.lex_state = 39, .external_lex_state = 10}, + [2596] = {.lex_state = 39, .external_lex_state = 12}, + [2597] = {.lex_state = 39, .external_lex_state = 10}, + [2598] = {.lex_state = 39, .external_lex_state = 12}, [2599] = {.lex_state = 39, .external_lex_state = 9}, - [2600] = {.lex_state = 39, .external_lex_state = 9}, + [2600] = {.lex_state = 39, .external_lex_state = 12}, [2601] = {.lex_state = 39, .external_lex_state = 10}, - [2602] = {.lex_state = 39, .external_lex_state = 10}, - [2603] = {.lex_state = 22, .external_lex_state = 13}, + [2602] = {.lex_state = 39, .external_lex_state = 12}, + [2603] = {.lex_state = 39, .external_lex_state = 9}, [2604] = {.lex_state = 39, .external_lex_state = 9}, [2605] = {.lex_state = 39, .external_lex_state = 9}, - [2606] = {.lex_state = 3, .external_lex_state = 10}, - [2607] = {.lex_state = 39, .external_lex_state = 9}, - [2608] = {.lex_state = 39, .external_lex_state = 10}, + [2606] = {.lex_state = 39, .external_lex_state = 12}, + [2607] = {.lex_state = 39, .external_lex_state = 12}, + [2608] = {.lex_state = 39, .external_lex_state = 12}, [2609] = {.lex_state = 39, .external_lex_state = 9}, - [2610] = {.lex_state = 39, .external_lex_state = 10}, - [2611] = {.lex_state = 39, .external_lex_state = 9}, + [2610] = {.lex_state = 39, .external_lex_state = 9}, + [2611] = {.lex_state = 39, .external_lex_state = 12}, [2612] = {.lex_state = 39, .external_lex_state = 9}, - [2613] = {.lex_state = 39, .external_lex_state = 10}, - [2614] = {.lex_state = 39, .external_lex_state = 9}, - [2615] = {.lex_state = 39, .external_lex_state = 10}, - [2616] = {.lex_state = 22, .external_lex_state = 13}, - [2617] = {.lex_state = 39, .external_lex_state = 11}, - [2618] = {.lex_state = 39, .external_lex_state = 9}, - [2619] = {.lex_state = 39, .external_lex_state = 11}, - [2620] = {.lex_state = 39, .external_lex_state = 9}, - [2621] = {.lex_state = 39, .external_lex_state = 11}, - [2622] = {.lex_state = 39, .external_lex_state = 9}, - [2623] = {.lex_state = 39, .external_lex_state = 10}, - [2624] = {.lex_state = 39, .external_lex_state = 10}, - [2625] = {.lex_state = 39, .external_lex_state = 12}, - [2626] = {.lex_state = 39, .external_lex_state = 9}, - [2627] = {.lex_state = 39, .external_lex_state = 9}, - [2628] = {.lex_state = 39, .external_lex_state = 10}, - [2629] = {.lex_state = 39, .external_lex_state = 9}, - [2630] = {.lex_state = 39, .external_lex_state = 9}, - [2631] = {.lex_state = 39, .external_lex_state = 9}, - [2632] = {.lex_state = 39, .external_lex_state = 9}, - [2633] = {.lex_state = 39, .external_lex_state = 9}, + [2613] = {.lex_state = 39, .external_lex_state = 9}, + [2614] = {.lex_state = 39, .external_lex_state = 11}, + [2615] = {.lex_state = 39, .external_lex_state = 11}, + [2616] = {.lex_state = 39, .external_lex_state = 12}, + [2617] = {.lex_state = 39, .external_lex_state = 12}, + [2618] = {.lex_state = 39, .external_lex_state = 8}, + [2619] = {.lex_state = 39, .external_lex_state = 8}, + [2620] = {.lex_state = 3, .external_lex_state = 10}, + [2621] = {.lex_state = 39, .external_lex_state = 9}, + [2622] = {.lex_state = 39, .external_lex_state = 8}, + [2623] = {.lex_state = 3, .external_lex_state = 10}, + [2624] = {.lex_state = 39, .external_lex_state = 9}, + [2625] = {.lex_state = 39, .external_lex_state = 8}, + [2626] = {.lex_state = 3, .external_lex_state = 10}, + [2627] = {.lex_state = 39, .external_lex_state = 8}, + [2628] = {.lex_state = 39, .external_lex_state = 8}, + [2629] = {.lex_state = 3, .external_lex_state = 10}, + [2630] = {.lex_state = 39, .external_lex_state = 8}, + [2631] = {.lex_state = 3, .external_lex_state = 10}, + [2632] = {.lex_state = 3, .external_lex_state = 10}, + [2633] = {.lex_state = 3, .external_lex_state = 10}, [2634] = {.lex_state = 3, .external_lex_state = 10}, - [2635] = {.lex_state = 39, .external_lex_state = 9}, + [2635] = {.lex_state = 39, .external_lex_state = 12}, [2636] = {.lex_state = 39, .external_lex_state = 9}, [2637] = {.lex_state = 39, .external_lex_state = 9}, [2638] = {.lex_state = 39, .external_lex_state = 9}, - [2639] = {.lex_state = 39, .external_lex_state = 9}, - [2640] = {.lex_state = 39, .external_lex_state = 9}, - [2641] = {.lex_state = 39, .external_lex_state = 9}, - [2642] = {.lex_state = 39, .external_lex_state = 9}, - [2643] = {.lex_state = 39, .external_lex_state = 9}, - [2644] = {.lex_state = 39, .external_lex_state = 9}, - [2645] = {.lex_state = 39, .external_lex_state = 12}, - [2646] = {.lex_state = 39, .external_lex_state = 10}, - [2647] = {.lex_state = 39, .external_lex_state = 10}, - [2648] = {.lex_state = 39, .external_lex_state = 9}, - [2649] = {.lex_state = 39, .external_lex_state = 9}, - [2650] = {.lex_state = 39, .external_lex_state = 12}, - [2651] = {.lex_state = 39, .external_lex_state = 12}, - [2652] = {.lex_state = 39, .external_lex_state = 12}, - [2653] = {.lex_state = 39, .external_lex_state = 12}, - [2654] = {.lex_state = 39, .external_lex_state = 9}, - [2655] = {.lex_state = 39, .external_lex_state = 9}, - [2656] = {.lex_state = 39, .external_lex_state = 10}, - [2657] = {.lex_state = 39, .external_lex_state = 9}, - [2658] = {.lex_state = 39, .external_lex_state = 12}, - [2659] = {.lex_state = 39, .external_lex_state = 9}, + [2639] = {.lex_state = 39, .external_lex_state = 12}, + [2640] = {.lex_state = 39, .external_lex_state = 12}, + [2641] = {.lex_state = 39, .external_lex_state = 12}, + [2642] = {.lex_state = 3, .external_lex_state = 10}, + [2643] = {.lex_state = 39, .external_lex_state = 12}, + [2644] = {.lex_state = 39, .external_lex_state = 8}, + [2645] = {.lex_state = 3, .external_lex_state = 10}, + [2646] = {.lex_state = 39, .external_lex_state = 8}, + [2647] = {.lex_state = 39, .external_lex_state = 8}, + [2648] = {.lex_state = 39, .external_lex_state = 8}, + [2649] = {.lex_state = 3, .external_lex_state = 10}, + [2650] = {.lex_state = 39, .external_lex_state = 8}, + [2651] = {.lex_state = 39, .external_lex_state = 8}, + [2652] = {.lex_state = 39, .external_lex_state = 8}, + [2653] = {.lex_state = 39, .external_lex_state = 8}, + [2654] = {.lex_state = 39, .external_lex_state = 12}, + [2655] = {.lex_state = 39, .external_lex_state = 8}, + [2656] = {.lex_state = 39, .external_lex_state = 12}, + [2657] = {.lex_state = 39, .external_lex_state = 12}, + [2658] = {.lex_state = 3, .external_lex_state = 10}, + [2659] = {.lex_state = 39, .external_lex_state = 8}, [2660] = {.lex_state = 39, .external_lex_state = 9}, - [2661] = {.lex_state = 39, .external_lex_state = 9}, + [2661] = {.lex_state = 39, .external_lex_state = 8}, [2662] = {.lex_state = 39, .external_lex_state = 12}, [2663] = {.lex_state = 39, .external_lex_state = 12}, - [2664] = {.lex_state = 39, .external_lex_state = 12}, - [2665] = {.lex_state = 39, .external_lex_state = 12}, - [2666] = {.lex_state = 39, .external_lex_state = 12}, - [2667] = {.lex_state = 39, .external_lex_state = 12}, - [2668] = {.lex_state = 39, .external_lex_state = 9}, - [2669] = {.lex_state = 39, .external_lex_state = 9}, - [2670] = {.lex_state = 39, .external_lex_state = 9}, - [2671] = {.lex_state = 39, .external_lex_state = 12}, - [2672] = {.lex_state = 39, .external_lex_state = 12}, - [2673] = {.lex_state = 39, .external_lex_state = 12}, + [2664] = {.lex_state = 39, .external_lex_state = 8}, + [2665] = {.lex_state = 39, .external_lex_state = 10}, + [2666] = {.lex_state = 39, .external_lex_state = 11}, + [2667] = {.lex_state = 39, .external_lex_state = 10}, + [2668] = {.lex_state = 39, .external_lex_state = 12}, + [2669] = {.lex_state = 39, .external_lex_state = 10}, + [2670] = {.lex_state = 39, .external_lex_state = 10}, + [2671] = {.lex_state = 39, .external_lex_state = 10}, + [2672] = {.lex_state = 39, .external_lex_state = 10}, + [2673] = {.lex_state = 3, .external_lex_state = 10}, [2674] = {.lex_state = 39, .external_lex_state = 10}, - [2675] = {.lex_state = 39, .external_lex_state = 9}, - [2676] = {.lex_state = 39, .external_lex_state = 11}, + [2675] = {.lex_state = 39, .external_lex_state = 12}, + [2676] = {.lex_state = 39, .external_lex_state = 12}, [2677] = {.lex_state = 39, .external_lex_state = 11}, - [2678] = {.lex_state = 39, .external_lex_state = 12}, - [2679] = {.lex_state = 39, .external_lex_state = 9}, - [2680] = {.lex_state = 39, .external_lex_state = 9}, - [2681] = {.lex_state = 39, .external_lex_state = 8}, + [2678] = {.lex_state = 39, .external_lex_state = 11}, + [2679] = {.lex_state = 39, .external_lex_state = 12}, + [2680] = {.lex_state = 39, .external_lex_state = 10}, + [2681] = {.lex_state = 39, .external_lex_state = 12}, [2682] = {.lex_state = 39, .external_lex_state = 12}, - [2683] = {.lex_state = 39, .external_lex_state = 8}, - [2684] = {.lex_state = 39, .external_lex_state = 12}, - [2685] = {.lex_state = 39, .external_lex_state = 12}, - [2686] = {.lex_state = 39, .external_lex_state = 8}, - [2687] = {.lex_state = 3, .external_lex_state = 10}, - [2688] = {.lex_state = 39, .external_lex_state = 12}, - [2689] = {.lex_state = 39, .external_lex_state = 12}, - [2690] = {.lex_state = 3, .external_lex_state = 10}, - [2691] = {.lex_state = 39, .external_lex_state = 12}, - [2692] = {.lex_state = 39, .external_lex_state = 12}, - [2693] = {.lex_state = 39, .external_lex_state = 12}, - [2694] = {.lex_state = 3, .external_lex_state = 10}, - [2695] = {.lex_state = 3, .external_lex_state = 10}, - [2696] = {.lex_state = 39, .external_lex_state = 8}, - [2697] = {.lex_state = 39, .external_lex_state = 8}, - [2698] = {.lex_state = 39, .external_lex_state = 12}, - [2699] = {.lex_state = 39, .external_lex_state = 8}, - [2700] = {.lex_state = 3, .external_lex_state = 10}, - [2701] = {.lex_state = 39, .external_lex_state = 8}, - [2702] = {.lex_state = 39, .external_lex_state = 8}, - [2703] = {.lex_state = 3, .external_lex_state = 10}, - [2704] = {.lex_state = 39, .external_lex_state = 8}, - [2705] = {.lex_state = 3, .external_lex_state = 10}, - [2706] = {.lex_state = 39, .external_lex_state = 8}, - [2707] = {.lex_state = 39, .external_lex_state = 8}, - [2708] = {.lex_state = 39, .external_lex_state = 8}, - [2709] = {.lex_state = 39, .external_lex_state = 8}, - [2710] = {.lex_state = 39, .external_lex_state = 12}, + [2683] = {.lex_state = 39, .external_lex_state = 11}, + [2684] = {.lex_state = 39, .external_lex_state = 11}, + [2685] = {.lex_state = 39, .external_lex_state = 11}, + [2686] = {.lex_state = 39, .external_lex_state = 12}, + [2687] = {.lex_state = 39, .external_lex_state = 10}, + [2688] = {.lex_state = 39, .external_lex_state = 11}, + [2689] = {.lex_state = 39, .external_lex_state = 11}, + [2690] = {.lex_state = 39, .external_lex_state = 10}, + [2691] = {.lex_state = 39, .external_lex_state = 10}, + [2692] = {.lex_state = 39, .external_lex_state = 10}, + [2693] = {.lex_state = 39, .external_lex_state = 11}, + [2694] = {.lex_state = 39, .external_lex_state = 11}, + [2695] = {.lex_state = 39, .external_lex_state = 11}, + [2696] = {.lex_state = 39, .external_lex_state = 11}, + [2697] = {.lex_state = 39, .external_lex_state = 9}, + [2698] = {.lex_state = 39, .external_lex_state = 11}, + [2699] = {.lex_state = 39, .external_lex_state = 12}, + [2700] = {.lex_state = 39, .external_lex_state = 12}, + [2701] = {.lex_state = 39, .external_lex_state = 10}, + [2702] = {.lex_state = 39, .external_lex_state = 9}, + [2703] = {.lex_state = 39, .external_lex_state = 11}, + [2704] = {.lex_state = 39, .external_lex_state = 11}, + [2705] = {.lex_state = 39, .external_lex_state = 11}, + [2706] = {.lex_state = 39, .external_lex_state = 10}, + [2707] = {.lex_state = 39, .external_lex_state = 9}, + [2708] = {.lex_state = 39, .external_lex_state = 9}, + [2709] = {.lex_state = 39, .external_lex_state = 12}, + [2710] = {.lex_state = 39, .external_lex_state = 11}, [2711] = {.lex_state = 39, .external_lex_state = 9}, - [2712] = {.lex_state = 39, .external_lex_state = 9}, - [2713] = {.lex_state = 39, .external_lex_state = 8}, - [2714] = {.lex_state = 3, .external_lex_state = 10}, + [2712] = {.lex_state = 39, .external_lex_state = 10}, + [2713] = {.lex_state = 39, .external_lex_state = 9}, + [2714] = {.lex_state = 39, .external_lex_state = 11}, [2715] = {.lex_state = 39, .external_lex_state = 9}, - [2716] = {.lex_state = 3, .external_lex_state = 10}, + [2716] = {.lex_state = 39, .external_lex_state = 9}, [2717] = {.lex_state = 39, .external_lex_state = 9}, - [2718] = {.lex_state = 39, .external_lex_state = 8}, - [2719] = {.lex_state = 39, .external_lex_state = 8}, - [2720] = {.lex_state = 39, .external_lex_state = 9}, - [2721] = {.lex_state = 39, .external_lex_state = 8}, - [2722] = {.lex_state = 39, .external_lex_state = 8}, - [2723] = {.lex_state = 3, .external_lex_state = 10}, - [2724] = {.lex_state = 39, .external_lex_state = 8}, - [2725] = {.lex_state = 3, .external_lex_state = 10}, - [2726] = {.lex_state = 3, .external_lex_state = 10}, - [2727] = {.lex_state = 39, .external_lex_state = 12}, - [2728] = {.lex_state = 39, .external_lex_state = 10}, - [2729] = {.lex_state = 39, .external_lex_state = 10}, - [2730] = {.lex_state = 39, .external_lex_state = 10}, - [2731] = {.lex_state = 39, .external_lex_state = 11}, - [2732] = {.lex_state = 39, .external_lex_state = 11}, - [2733] = {.lex_state = 39, .external_lex_state = 10}, + [2718] = {.lex_state = 39, .external_lex_state = 9}, + [2719] = {.lex_state = 39, .external_lex_state = 10}, + [2720] = {.lex_state = 39, .external_lex_state = 11}, + [2721] = {.lex_state = 39, .external_lex_state = 12}, + [2722] = {.lex_state = 39, .external_lex_state = 12}, + [2723] = {.lex_state = 39, .external_lex_state = 11}, + [2724] = {.lex_state = 39, .external_lex_state = 10}, + [2725] = {.lex_state = 39, .external_lex_state = 10}, + [2726] = {.lex_state = 39, .external_lex_state = 11}, + [2727] = {.lex_state = 39, .external_lex_state = 11}, + [2728] = {.lex_state = 39, .external_lex_state = 11}, + [2729] = {.lex_state = 39, .external_lex_state = 11}, + [2730] = {.lex_state = 39, .external_lex_state = 11}, + [2731] = {.lex_state = 39, .external_lex_state = 12}, + [2732] = {.lex_state = 39, .external_lex_state = 9}, + [2733] = {.lex_state = 39, .external_lex_state = 9}, [2734] = {.lex_state = 39, .external_lex_state = 11}, - [2735] = {.lex_state = 39, .external_lex_state = 12}, + [2735] = {.lex_state = 39, .external_lex_state = 9}, [2736] = {.lex_state = 39, .external_lex_state = 12}, - [2737] = {.lex_state = 39, .external_lex_state = 11}, - [2738] = {.lex_state = 39, .external_lex_state = 10}, - [2739] = {.lex_state = 39, .external_lex_state = 12}, - [2740] = {.lex_state = 39, .external_lex_state = 12}, - [2741] = {.lex_state = 39, .external_lex_state = 10}, - [2742] = {.lex_state = 39, .external_lex_state = 12}, + [2737] = {.lex_state = 39, .external_lex_state = 10}, + [2738] = {.lex_state = 39, .external_lex_state = 12}, + [2739] = {.lex_state = 39, .external_lex_state = 9}, + [2740] = {.lex_state = 39, .external_lex_state = 11}, + [2741] = {.lex_state = 39, .external_lex_state = 9}, + [2742] = {.lex_state = 39, .external_lex_state = 10}, [2743] = {.lex_state = 39, .external_lex_state = 12}, - [2744] = {.lex_state = 39, .external_lex_state = 10}, - [2745] = {.lex_state = 39, .external_lex_state = 12}, - [2746] = {.lex_state = 39, .external_lex_state = 11}, - [2747] = {.lex_state = 39, .external_lex_state = 11}, - [2748] = {.lex_state = 39, .external_lex_state = 11}, - [2749] = {.lex_state = 39, .external_lex_state = 10}, - [2750] = {.lex_state = 39, .external_lex_state = 10}, - [2751] = {.lex_state = 39, .external_lex_state = 9}, - [2752] = {.lex_state = 39, .external_lex_state = 10}, + [2744] = {.lex_state = 39, .external_lex_state = 12}, + [2745] = {.lex_state = 39, .external_lex_state = 11}, + [2746] = {.lex_state = 39, .external_lex_state = 8}, + [2747] = {.lex_state = 39, .external_lex_state = 10}, + [2748] = {.lex_state = 39, .external_lex_state = 10}, + [2749] = {.lex_state = 39, .external_lex_state = 11}, + [2750] = {.lex_state = 39, .external_lex_state = 11}, + [2751] = {.lex_state = 39, .external_lex_state = 10}, + [2752] = {.lex_state = 39, .external_lex_state = 12}, [2753] = {.lex_state = 39, .external_lex_state = 12}, - [2754] = {.lex_state = 39, .external_lex_state = 9}, + [2754] = {.lex_state = 39, .external_lex_state = 12}, [2755] = {.lex_state = 39, .external_lex_state = 11}, - [2756] = {.lex_state = 39, .external_lex_state = 12}, - [2757] = {.lex_state = 39, .external_lex_state = 11}, - [2758] = {.lex_state = 3, .external_lex_state = 10}, + [2756] = {.lex_state = 39, .external_lex_state = 10}, + [2757] = {.lex_state = 39, .external_lex_state = 12}, + [2758] = {.lex_state = 39, .external_lex_state = 10}, [2759] = {.lex_state = 39, .external_lex_state = 11}, - [2760] = {.lex_state = 39, .external_lex_state = 11}, - [2761] = {.lex_state = 39, .external_lex_state = 9}, - [2762] = {.lex_state = 39, .external_lex_state = 10}, + [2760] = {.lex_state = 3, .external_lex_state = 10}, + [2761] = {.lex_state = 39, .external_lex_state = 10}, + [2762] = {.lex_state = 39, .external_lex_state = 12}, [2763] = {.lex_state = 39, .external_lex_state = 12}, [2764] = {.lex_state = 39, .external_lex_state = 10}, - [2765] = {.lex_state = 39, .external_lex_state = 11}, - [2766] = {.lex_state = 39, .external_lex_state = 10}, - [2767] = {.lex_state = 39, .external_lex_state = 12}, + [2765] = {.lex_state = 39, .external_lex_state = 10}, + [2766] = {.lex_state = 39, .external_lex_state = 11}, + [2767] = {.lex_state = 3, .external_lex_state = 10}, [2768] = {.lex_state = 39, .external_lex_state = 12}, - [2769] = {.lex_state = 39, .external_lex_state = 12}, - [2770] = {.lex_state = 39, .external_lex_state = 9}, - [2771] = {.lex_state = 39, .external_lex_state = 9}, - [2772] = {.lex_state = 39, .external_lex_state = 10}, - [2773] = {.lex_state = 39, .external_lex_state = 10}, - [2774] = {.lex_state = 3, .external_lex_state = 10}, - [2775] = {.lex_state = 39, .external_lex_state = 10}, + [2769] = {.lex_state = 39, .external_lex_state = 10}, + [2770] = {.lex_state = 39, .external_lex_state = 10}, + [2771] = {.lex_state = 39, .external_lex_state = 12}, + [2772] = {.lex_state = 39, .external_lex_state = 11}, + [2773] = {.lex_state = 39, .external_lex_state = 12}, + [2774] = {.lex_state = 39, .external_lex_state = 9}, + [2775] = {.lex_state = 39, .external_lex_state = 11}, [2776] = {.lex_state = 39, .external_lex_state = 11}, - [2777] = {.lex_state = 39, .external_lex_state = 12}, - [2778] = {.lex_state = 39, .external_lex_state = 10}, - [2779] = {.lex_state = 39, .external_lex_state = 9}, - [2780] = {.lex_state = 3, .external_lex_state = 10}, - [2781] = {.lex_state = 39, .external_lex_state = 10}, + [2777] = {.lex_state = 39, .external_lex_state = 11}, + [2778] = {.lex_state = 39, .external_lex_state = 11}, + [2779] = {.lex_state = 39, .external_lex_state = 10}, + [2780] = {.lex_state = 39, .external_lex_state = 11}, + [2781] = {.lex_state = 3, .external_lex_state = 10}, [2782] = {.lex_state = 39, .external_lex_state = 11}, - [2783] = {.lex_state = 39, .external_lex_state = 11}, - [2784] = {.lex_state = 39, .external_lex_state = 10}, + [2783] = {.lex_state = 39, .external_lex_state = 10}, + [2784] = {.lex_state = 39, .external_lex_state = 9}, [2785] = {.lex_state = 39, .external_lex_state = 12}, [2786] = {.lex_state = 39, .external_lex_state = 11}, [2787] = {.lex_state = 39, .external_lex_state = 9}, - [2788] = {.lex_state = 39, .external_lex_state = 9}, - [2789] = {.lex_state = 39, .external_lex_state = 12}, - [2790] = {.lex_state = 39, .external_lex_state = 9}, - [2791] = {.lex_state = 39, .external_lex_state = 12}, + [2788] = {.lex_state = 39, .external_lex_state = 12}, + [2789] = {.lex_state = 39, .external_lex_state = 9}, + [2790] = {.lex_state = 39, .external_lex_state = 10}, + [2791] = {.lex_state = 39, .external_lex_state = 9}, [2792] = {.lex_state = 39, .external_lex_state = 10}, - [2793] = {.lex_state = 39, .external_lex_state = 10}, + [2793] = {.lex_state = 3, .external_lex_state = 10}, [2794] = {.lex_state = 39, .external_lex_state = 11}, [2795] = {.lex_state = 39, .external_lex_state = 11}, - [2796] = {.lex_state = 39, .external_lex_state = 10}, - [2797] = {.lex_state = 39, .external_lex_state = 12}, - [2798] = {.lex_state = 39, .external_lex_state = 10}, + [2796] = {.lex_state = 39, .external_lex_state = 12}, + [2797] = {.lex_state = 39, .external_lex_state = 11}, + [2798] = {.lex_state = 39, .external_lex_state = 9}, [2799] = {.lex_state = 39, .external_lex_state = 9}, - [2800] = {.lex_state = 39, .external_lex_state = 11}, - [2801] = {.lex_state = 39, .external_lex_state = 10}, - [2802] = {.lex_state = 39, .external_lex_state = 10}, - [2803] = {.lex_state = 39, .external_lex_state = 10}, + [2800] = {.lex_state = 39, .external_lex_state = 10}, + [2801] = {.lex_state = 39, .external_lex_state = 9}, + [2802] = {.lex_state = 39, .external_lex_state = 12}, + [2803] = {.lex_state = 39, .external_lex_state = 9}, [2804] = {.lex_state = 39, .external_lex_state = 10}, [2805] = {.lex_state = 39, .external_lex_state = 11}, - [2806] = {.lex_state = 39, .external_lex_state = 11}, - [2807] = {.lex_state = 39, .external_lex_state = 10}, - [2808] = {.lex_state = 39, .external_lex_state = 12}, + [2806] = {.lex_state = 39, .external_lex_state = 12}, + [2807] = {.lex_state = 39, .external_lex_state = 9}, + [2808] = {.lex_state = 39, .external_lex_state = 10}, [2809] = {.lex_state = 39, .external_lex_state = 11}, - [2810] = {.lex_state = 39, .external_lex_state = 11}, - [2811] = {.lex_state = 39, .external_lex_state = 10}, + [2810] = {.lex_state = 39, .external_lex_state = 12}, + [2811] = {.lex_state = 39, .external_lex_state = 11}, [2812] = {.lex_state = 39, .external_lex_state = 11}, - [2813] = {.lex_state = 39, .external_lex_state = 9}, - [2814] = {.lex_state = 39, .external_lex_state = 11}, - [2815] = {.lex_state = 39, .external_lex_state = 10}, - [2816] = {.lex_state = 39, .external_lex_state = 12}, - [2817] = {.lex_state = 39, .external_lex_state = 9}, - [2818] = {.lex_state = 39, .external_lex_state = 9}, + [2813] = {.lex_state = 39, .external_lex_state = 12}, + [2814] = {.lex_state = 39, .external_lex_state = 10}, + [2815] = {.lex_state = 39, .external_lex_state = 11}, + [2816] = {.lex_state = 39, .external_lex_state = 10}, + [2817] = {.lex_state = 39, .external_lex_state = 10}, + [2818] = {.lex_state = 39, .external_lex_state = 10}, [2819] = {.lex_state = 39, .external_lex_state = 10}, - [2820] = {.lex_state = 39, .external_lex_state = 12}, + [2820] = {.lex_state = 39, .external_lex_state = 10}, [2821] = {.lex_state = 39, .external_lex_state = 11}, [2822] = {.lex_state = 39, .external_lex_state = 12}, - [2823] = {.lex_state = 3, .external_lex_state = 10}, - [2824] = {.lex_state = 39, .external_lex_state = 10}, - [2825] = {.lex_state = 39, .external_lex_state = 9}, - [2826] = {.lex_state = 39, .external_lex_state = 12}, + [2823] = {.lex_state = 39, .external_lex_state = 10}, + [2824] = {.lex_state = 39, .external_lex_state = 11}, + [2825] = {.lex_state = 39, .external_lex_state = 10}, + [2826] = {.lex_state = 39, .external_lex_state = 11}, [2827] = {.lex_state = 39, .external_lex_state = 10}, - [2828] = {.lex_state = 39, .external_lex_state = 11}, - [2829] = {.lex_state = 39, .external_lex_state = 11}, - [2830] = {.lex_state = 39, .external_lex_state = 10}, - [2831] = {.lex_state = 39, .external_lex_state = 9}, - [2832] = {.lex_state = 39, .external_lex_state = 9}, - [2833] = {.lex_state = 39, .external_lex_state = 12}, - [2834] = {.lex_state = 39, .external_lex_state = 12}, - [2835] = {.lex_state = 39, .external_lex_state = 11}, - [2836] = {.lex_state = 39, .external_lex_state = 11}, + [2828] = {.lex_state = 39, .external_lex_state = 12}, + [2829] = {.lex_state = 39, .external_lex_state = 10}, + [2830] = {.lex_state = 39, .external_lex_state = 9}, + [2831] = {.lex_state = 39, .external_lex_state = 12}, + [2832] = {.lex_state = 39, .external_lex_state = 11}, + [2833] = {.lex_state = 39, .external_lex_state = 9}, + [2834] = {.lex_state = 39, .external_lex_state = 10}, + [2835] = {.lex_state = 39, .external_lex_state = 2}, + [2836] = {.lex_state = 39, .external_lex_state = 9}, [2837] = {.lex_state = 39, .external_lex_state = 11}, - [2838] = {.lex_state = 39, .external_lex_state = 10}, - [2839] = {.lex_state = 39, .external_lex_state = 9}, - [2840] = {.lex_state = 3, .external_lex_state = 10}, - [2841] = {.lex_state = 39, .external_lex_state = 11}, - [2842] = {.lex_state = 39, .external_lex_state = 11}, - [2843] = {.lex_state = 39, .external_lex_state = 10}, - [2844] = {.lex_state = 39, .external_lex_state = 9}, - [2845] = {.lex_state = 39, .external_lex_state = 9}, - [2846] = {.lex_state = 39, .external_lex_state = 12}, - [2847] = {.lex_state = 39, .external_lex_state = 12}, + [2838] = {.lex_state = 39, .external_lex_state = 9}, + [2839] = {.lex_state = 39, .external_lex_state = 10}, + [2840] = {.lex_state = 39, .external_lex_state = 9}, + [2841] = {.lex_state = 39, .external_lex_state = 10}, + [2842] = {.lex_state = 39, .external_lex_state = 10}, + [2843] = {.lex_state = 39, .external_lex_state = 9}, + [2844] = {.lex_state = 39, .external_lex_state = 8}, + [2845] = {.lex_state = 39, .external_lex_state = 10}, + [2846] = {.lex_state = 39, .external_lex_state = 10}, + [2847] = {.lex_state = 39, .external_lex_state = 10}, [2848] = {.lex_state = 39, .external_lex_state = 10}, - [2849] = {.lex_state = 39, .external_lex_state = 11}, + [2849] = {.lex_state = 39, .external_lex_state = 9}, [2850] = {.lex_state = 39, .external_lex_state = 9}, - [2851] = {.lex_state = 39, .external_lex_state = 11}, + [2851] = {.lex_state = 39, .external_lex_state = 9}, [2852] = {.lex_state = 39, .external_lex_state = 10}, - [2853] = {.lex_state = 39, .external_lex_state = 11}, - [2854] = {.lex_state = 39, .external_lex_state = 11}, + [2853] = {.lex_state = 39, .external_lex_state = 9}, + [2854] = {.lex_state = 39, .external_lex_state = 9}, [2855] = {.lex_state = 39, .external_lex_state = 10}, - [2856] = {.lex_state = 39, .external_lex_state = 12}, - [2857] = {.lex_state = 39, .external_lex_state = 12}, + [2856] = {.lex_state = 39, .external_lex_state = 9}, + [2857] = {.lex_state = 39, .external_lex_state = 9}, [2858] = {.lex_state = 39, .external_lex_state = 10}, - [2859] = {.lex_state = 39, .external_lex_state = 8}, - [2860] = {.lex_state = 39, .external_lex_state = 10}, - [2861] = {.lex_state = 39, .external_lex_state = 11}, - [2862] = {.lex_state = 39, .external_lex_state = 9}, + [2859] = {.lex_state = 39, .external_lex_state = 10}, + [2860] = {.lex_state = 39, .external_lex_state = 9}, + [2861] = {.lex_state = 39, .external_lex_state = 9}, + [2862] = {.lex_state = 39, .external_lex_state = 11}, [2863] = {.lex_state = 39, .external_lex_state = 11}, - [2864] = {.lex_state = 39, .external_lex_state = 10}, + [2864] = {.lex_state = 39, .external_lex_state = 9}, [2865] = {.lex_state = 39, .external_lex_state = 9}, [2866] = {.lex_state = 39, .external_lex_state = 9}, [2867] = {.lex_state = 39, .external_lex_state = 9}, - [2868] = {.lex_state = 39, .external_lex_state = 11}, - [2869] = {.lex_state = 39, .external_lex_state = 10}, - [2870] = {.lex_state = 39, .external_lex_state = 10}, - [2871] = {.lex_state = 39, .external_lex_state = 11}, - [2872] = {.lex_state = 39, .external_lex_state = 11}, - [2873] = {.lex_state = 39, .external_lex_state = 11}, - [2874] = {.lex_state = 39, .external_lex_state = 10}, - [2875] = {.lex_state = 39, .external_lex_state = 12}, - [2876] = {.lex_state = 39, .external_lex_state = 11}, - [2877] = {.lex_state = 39, .external_lex_state = 11}, - [2878] = {.lex_state = 39, .external_lex_state = 10}, + [2868] = {.lex_state = 39, .external_lex_state = 10}, + [2869] = {.lex_state = 39, .external_lex_state = 9}, + [2870] = {.lex_state = 39, .external_lex_state = 8}, + [2871] = {.lex_state = 39, .external_lex_state = 2}, + [2872] = {.lex_state = 39, .external_lex_state = 9}, + [2873] = {.lex_state = 39, .external_lex_state = 9}, + [2874] = {.lex_state = 39, .external_lex_state = 12}, + [2875] = {.lex_state = 39, .external_lex_state = 10}, + [2876] = {.lex_state = 39, .external_lex_state = 10}, + [2877] = {.lex_state = 39, .external_lex_state = 9}, + [2878] = {.lex_state = 39, .external_lex_state = 9}, [2879] = {.lex_state = 39, .external_lex_state = 9}, - [2880] = {.lex_state = 39, .external_lex_state = 11}, - [2881] = {.lex_state = 39, .external_lex_state = 11}, - [2882] = {.lex_state = 39, .external_lex_state = 12}, - [2883] = {.lex_state = 39, .external_lex_state = 12}, - [2884] = {.lex_state = 39, .external_lex_state = 11}, + [2880] = {.lex_state = 39, .external_lex_state = 9}, + [2881] = {.lex_state = 39, .external_lex_state = 9}, + [2882] = {.lex_state = 39, .external_lex_state = 9}, + [2883] = {.lex_state = 39, .external_lex_state = 9}, + [2884] = {.lex_state = 39, .external_lex_state = 10}, [2885] = {.lex_state = 39, .external_lex_state = 10}, - [2886] = {.lex_state = 39, .external_lex_state = 12}, - [2887] = {.lex_state = 39, .external_lex_state = 11}, - [2888] = {.lex_state = 39, .external_lex_state = 12}, + [2886] = {.lex_state = 39, .external_lex_state = 9}, + [2887] = {.lex_state = 39, .external_lex_state = 9}, + [2888] = {.lex_state = 39, .external_lex_state = 9}, [2889] = {.lex_state = 39, .external_lex_state = 9}, - [2890] = {.lex_state = 39, .external_lex_state = 11}, - [2891] = {.lex_state = 39, .external_lex_state = 11}, - [2892] = {.lex_state = 39, .external_lex_state = 11}, - [2893] = {.lex_state = 39, .external_lex_state = 11}, - [2894] = {.lex_state = 39, .external_lex_state = 12}, + [2890] = {.lex_state = 39, .external_lex_state = 10}, + [2891] = {.lex_state = 39, .external_lex_state = 10}, + [2892] = {.lex_state = 39, .external_lex_state = 9}, + [2893] = {.lex_state = 39, .external_lex_state = 2}, + [2894] = {.lex_state = 39, .external_lex_state = 9}, [2895] = {.lex_state = 39, .external_lex_state = 9}, [2896] = {.lex_state = 39, .external_lex_state = 2}, - [2897] = {.lex_state = 39, .external_lex_state = 10}, - [2898] = {.lex_state = 39, .external_lex_state = 9}, + [2897] = {.lex_state = 39, .external_lex_state = 9}, + [2898] = {.lex_state = 39, .external_lex_state = 11}, [2899] = {.lex_state = 39, .external_lex_state = 10}, - [2900] = {.lex_state = 39, .external_lex_state = 9}, + [2900] = {.lex_state = 39, .external_lex_state = 11}, [2901] = {.lex_state = 39, .external_lex_state = 10}, - [2902] = {.lex_state = 39, .external_lex_state = 2}, - [2903] = {.lex_state = 39, .external_lex_state = 9}, - [2904] = {.lex_state = 39, .external_lex_state = 10}, - [2905] = {.lex_state = 39, .external_lex_state = 9}, + [2902] = {.lex_state = 39, .external_lex_state = 9}, + [2903] = {.lex_state = 39, .external_lex_state = 10}, + [2904] = {.lex_state = 39, .external_lex_state = 9}, + [2905] = {.lex_state = 39, .external_lex_state = 8}, [2906] = {.lex_state = 39, .external_lex_state = 9}, [2907] = {.lex_state = 39, .external_lex_state = 9}, - [2908] = {.lex_state = 39, .external_lex_state = 9}, - [2909] = {.lex_state = 39, .external_lex_state = 9}, - [2910] = {.lex_state = 39, .external_lex_state = 10}, - [2911] = {.lex_state = 39, .external_lex_state = 10}, - [2912] = {.lex_state = 39, .external_lex_state = 9}, - [2913] = {.lex_state = 39, .external_lex_state = 2}, + [2908] = {.lex_state = 39, .external_lex_state = 10}, + [2909] = {.lex_state = 39, .external_lex_state = 10}, + [2910] = {.lex_state = 39, .external_lex_state = 9}, + [2911] = {.lex_state = 39, .external_lex_state = 12}, + [2912] = {.lex_state = 39, .external_lex_state = 10}, + [2913] = {.lex_state = 39, .external_lex_state = 10}, [2914] = {.lex_state = 39, .external_lex_state = 10}, - [2915] = {.lex_state = 39, .external_lex_state = 10}, + [2915] = {.lex_state = 68, .external_lex_state = 9}, [2916] = {.lex_state = 39, .external_lex_state = 11}, - [2917] = {.lex_state = 39, .external_lex_state = 10}, - [2918] = {.lex_state = 39, .external_lex_state = 9}, + [2917] = {.lex_state = 39, .external_lex_state = 9}, + [2918] = {.lex_state = 39, .external_lex_state = 11}, [2919] = {.lex_state = 39, .external_lex_state = 10}, [2920] = {.lex_state = 39, .external_lex_state = 9}, - [2921] = {.lex_state = 39, .external_lex_state = 10}, - [2922] = {.lex_state = 39, .external_lex_state = 9}, + [2921] = {.lex_state = 39, .external_lex_state = 9}, + [2922] = {.lex_state = 39, .external_lex_state = 10}, [2923] = {.lex_state = 39, .external_lex_state = 10}, - [2924] = {.lex_state = 39, .external_lex_state = 10}, - [2925] = {.lex_state = 39, .external_lex_state = 11}, - [2926] = {.lex_state = 39, .external_lex_state = 9}, + [2924] = {.lex_state = 39, .external_lex_state = 12}, + [2925] = {.lex_state = 68, .external_lex_state = 9}, + [2926] = {.lex_state = 39, .external_lex_state = 10}, [2927] = {.lex_state = 39, .external_lex_state = 9}, - [2928] = {.lex_state = 39, .external_lex_state = 9}, - [2929] = {.lex_state = 39, .external_lex_state = 11}, - [2930] = {.lex_state = 39, .external_lex_state = 8}, - [2931] = {.lex_state = 39, .external_lex_state = 9}, - [2932] = {.lex_state = 39, .external_lex_state = 9}, - [2933] = {.lex_state = 39, .external_lex_state = 12}, - [2934] = {.lex_state = 39, .external_lex_state = 11}, + [2928] = {.lex_state = 39, .external_lex_state = 12}, + [2929] = {.lex_state = 39, .external_lex_state = 9}, + [2930] = {.lex_state = 39, .external_lex_state = 9}, + [2931] = {.lex_state = 39, .external_lex_state = 12}, + [2932] = {.lex_state = 39, .external_lex_state = 10}, + [2933] = {.lex_state = 39, .external_lex_state = 10}, + [2934] = {.lex_state = 39, .external_lex_state = 9}, [2935] = {.lex_state = 39, .external_lex_state = 9}, - [2936] = {.lex_state = 39, .external_lex_state = 10}, + [2936] = {.lex_state = 39, .external_lex_state = 8}, [2937] = {.lex_state = 39, .external_lex_state = 10}, - [2938] = {.lex_state = 39, .external_lex_state = 9}, + [2938] = {.lex_state = 39, .external_lex_state = 11}, [2939] = {.lex_state = 39, .external_lex_state = 9}, [2940] = {.lex_state = 39, .external_lex_state = 9}, - [2941] = {.lex_state = 39, .external_lex_state = 10}, - [2942] = {.lex_state = 39, .external_lex_state = 9}, + [2941] = {.lex_state = 39, .external_lex_state = 9}, + [2942] = {.lex_state = 39, .external_lex_state = 10}, [2943] = {.lex_state = 39, .external_lex_state = 9}, [2944] = {.lex_state = 39, .external_lex_state = 9}, - [2945] = {.lex_state = 39, .external_lex_state = 9}, + [2945] = {.lex_state = 68, .external_lex_state = 9}, [2946] = {.lex_state = 39, .external_lex_state = 9}, [2947] = {.lex_state = 39, .external_lex_state = 9}, - [2948] = {.lex_state = 39, .external_lex_state = 2}, + [2948] = {.lex_state = 39, .external_lex_state = 11}, [2949] = {.lex_state = 39, .external_lex_state = 9}, - [2950] = {.lex_state = 39, .external_lex_state = 10}, - [2951] = {.lex_state = 39, .external_lex_state = 9}, + [2950] = {.lex_state = 23, .external_lex_state = 9}, + [2951] = {.lex_state = 39, .external_lex_state = 10}, [2952] = {.lex_state = 39, .external_lex_state = 9}, - [2953] = {.lex_state = 39, .external_lex_state = 8}, - [2954] = {.lex_state = 39, .external_lex_state = 9}, - [2955] = {.lex_state = 39, .external_lex_state = 9}, - [2956] = {.lex_state = 39, .external_lex_state = 9}, + [2953] = {.lex_state = 39, .external_lex_state = 12}, + [2954] = {.lex_state = 39, .external_lex_state = 10}, + [2955] = {.lex_state = 39, .external_lex_state = 11}, + [2956] = {.lex_state = 39, .external_lex_state = 10}, [2957] = {.lex_state = 39, .external_lex_state = 10}, - [2958] = {.lex_state = 39, .external_lex_state = 9}, - [2959] = {.lex_state = 39, .external_lex_state = 10}, + [2958] = {.lex_state = 39, .external_lex_state = 11}, + [2959] = {.lex_state = 39, .external_lex_state = 9}, [2960] = {.lex_state = 39, .external_lex_state = 9}, - [2961] = {.lex_state = 39, .external_lex_state = 9}, - [2962] = {.lex_state = 39, .external_lex_state = 10}, - [2963] = {.lex_state = 39, .external_lex_state = 8}, + [2961] = {.lex_state = 39, .external_lex_state = 8}, + [2962] = {.lex_state = 39, .external_lex_state = 8}, + [2963] = {.lex_state = 39, .external_lex_state = 12}, [2964] = {.lex_state = 39, .external_lex_state = 9}, - [2965] = {.lex_state = 39, .external_lex_state = 9}, - [2966] = {.lex_state = 39, .external_lex_state = 10}, - [2967] = {.lex_state = 39, .external_lex_state = 10}, - [2968] = {.lex_state = 39, .external_lex_state = 9}, - [2969] = {.lex_state = 39, .external_lex_state = 8}, - [2970] = {.lex_state = 39, .external_lex_state = 8}, - [2971] = {.lex_state = 39, .external_lex_state = 9}, - [2972] = {.lex_state = 39, .external_lex_state = 8}, - [2973] = {.lex_state = 39, .external_lex_state = 10}, - [2974] = {.lex_state = 39, .external_lex_state = 9}, - [2975] = {.lex_state = 39, .external_lex_state = 9}, + [2965] = {.lex_state = 39, .external_lex_state = 8}, + [2966] = {.lex_state = 39, .external_lex_state = 9}, + [2967] = {.lex_state = 39, .external_lex_state = 8}, + [2968] = {.lex_state = 39, .external_lex_state = 10}, + [2969] = {.lex_state = 39, .external_lex_state = 10}, + [2970] = {.lex_state = 68, .external_lex_state = 9}, + [2971] = {.lex_state = 39, .external_lex_state = 10}, + [2972] = {.lex_state = 39, .external_lex_state = 10}, + [2973] = {.lex_state = 39, .external_lex_state = 9}, + [2974] = {.lex_state = 39, .external_lex_state = 10}, + [2975] = {.lex_state = 39, .external_lex_state = 10}, [2976] = {.lex_state = 39, .external_lex_state = 9}, [2977] = {.lex_state = 39, .external_lex_state = 9}, - [2978] = {.lex_state = 39, .external_lex_state = 10}, - [2979] = {.lex_state = 68, .external_lex_state = 9}, + [2978] = {.lex_state = 39, .external_lex_state = 12}, + [2979] = {.lex_state = 39, .external_lex_state = 9}, [2980] = {.lex_state = 39, .external_lex_state = 9}, [2981] = {.lex_state = 39, .external_lex_state = 9}, - [2982] = {.lex_state = 39, .external_lex_state = 12}, - [2983] = {.lex_state = 39, .external_lex_state = 9}, - [2984] = {.lex_state = 39, .external_lex_state = 10}, - [2985] = {.lex_state = 39, .external_lex_state = 9}, + [2982] = {.lex_state = 39, .external_lex_state = 9}, + [2983] = {.lex_state = 39, .external_lex_state = 10}, + [2984] = {.lex_state = 39, .external_lex_state = 9}, + [2985] = {.lex_state = 39, .external_lex_state = 8}, [2986] = {.lex_state = 39, .external_lex_state = 9}, - [2987] = {.lex_state = 39, .external_lex_state = 9}, - [2988] = {.lex_state = 39, .external_lex_state = 9}, - [2989] = {.lex_state = 39, .external_lex_state = 9}, - [2990] = {.lex_state = 39, .external_lex_state = 9}, - [2991] = {.lex_state = 39, .external_lex_state = 11}, - [2992] = {.lex_state = 39, .external_lex_state = 10}, + [2987] = {.lex_state = 39, .external_lex_state = 11}, + [2988] = {.lex_state = 39, .external_lex_state = 10}, + [2989] = {.lex_state = 39, .external_lex_state = 11}, + [2990] = {.lex_state = 39, .external_lex_state = 10}, + [2991] = {.lex_state = 68, .external_lex_state = 9}, + [2992] = {.lex_state = 39, .external_lex_state = 12}, [2993] = {.lex_state = 39, .external_lex_state = 9}, - [2994] = {.lex_state = 39, .external_lex_state = 8}, - [2995] = {.lex_state = 39, .external_lex_state = 10}, + [2994] = {.lex_state = 39, .external_lex_state = 11}, + [2995] = {.lex_state = 39, .external_lex_state = 9}, [2996] = {.lex_state = 39, .external_lex_state = 10}, - [2997] = {.lex_state = 39, .external_lex_state = 8}, - [2998] = {.lex_state = 39, .external_lex_state = 10}, - [2999] = {.lex_state = 39, .external_lex_state = 8}, - [3000] = {.lex_state = 39, .external_lex_state = 12}, + [2997] = {.lex_state = 39, .external_lex_state = 9}, + [2998] = {.lex_state = 39, .external_lex_state = 9}, + [2999] = {.lex_state = 39, .external_lex_state = 12}, + [3000] = {.lex_state = 39, .external_lex_state = 9}, [3001] = {.lex_state = 39, .external_lex_state = 10}, - [3002] = {.lex_state = 39, .external_lex_state = 10}, - [3003] = {.lex_state = 39, .external_lex_state = 11}, - [3004] = {.lex_state = 68, .external_lex_state = 9}, - [3005] = {.lex_state = 39, .external_lex_state = 10}, - [3006] = {.lex_state = 39, .external_lex_state = 10}, - [3007] = {.lex_state = 39, .external_lex_state = 10}, - [3008] = {.lex_state = 39, .external_lex_state = 10}, - [3009] = {.lex_state = 39, .external_lex_state = 10}, - [3010] = {.lex_state = 39, .external_lex_state = 9}, + [3002] = {.lex_state = 39, .external_lex_state = 12}, + [3003] = {.lex_state = 39, .external_lex_state = 9}, + [3004] = {.lex_state = 39, .external_lex_state = 10}, + [3005] = {.lex_state = 39, .external_lex_state = 9}, + [3006] = {.lex_state = 39, .external_lex_state = 9}, + [3007] = {.lex_state = 39, .external_lex_state = 11}, + [3008] = {.lex_state = 39, .external_lex_state = 9}, + [3009] = {.lex_state = 39, .external_lex_state = 9}, + [3010] = {.lex_state = 39, .external_lex_state = 10}, [3011] = {.lex_state = 39, .external_lex_state = 9}, - [3012] = {.lex_state = 39, .external_lex_state = 11}, - [3013] = {.lex_state = 39, .external_lex_state = 12}, - [3014] = {.lex_state = 39, .external_lex_state = 10}, - [3015] = {.lex_state = 39, .external_lex_state = 11}, + [3012] = {.lex_state = 68, .external_lex_state = 9}, + [3013] = {.lex_state = 39, .external_lex_state = 9}, + [3014] = {.lex_state = 39, .external_lex_state = 9}, + [3015] = {.lex_state = 39, .external_lex_state = 9}, [3016] = {.lex_state = 39, .external_lex_state = 9}, - [3017] = {.lex_state = 39, .external_lex_state = 10}, - [3018] = {.lex_state = 39, .external_lex_state = 9}, - [3019] = {.lex_state = 39, .external_lex_state = 9}, - [3020] = {.lex_state = 39, .external_lex_state = 9}, - [3021] = {.lex_state = 39, .external_lex_state = 10}, - [3022] = {.lex_state = 39, .external_lex_state = 9}, - [3023] = {.lex_state = 39, .external_lex_state = 9}, - [3024] = {.lex_state = 39, .external_lex_state = 9}, - [3025] = {.lex_state = 39, .external_lex_state = 9}, - [3026] = {.lex_state = 39, .external_lex_state = 9}, - [3027] = {.lex_state = 39, .external_lex_state = 11}, - [3028] = {.lex_state = 39, .external_lex_state = 9}, - [3029] = {.lex_state = 39, .external_lex_state = 10}, - [3030] = {.lex_state = 39, .external_lex_state = 9}, - [3031] = {.lex_state = 39, .external_lex_state = 8}, - [3032] = {.lex_state = 39, .external_lex_state = 12}, - [3033] = {.lex_state = 39, .external_lex_state = 12}, - [3034] = {.lex_state = 68, .external_lex_state = 9}, + [3017] = {.lex_state = 39, .external_lex_state = 9}, + [3018] = {.lex_state = 39, .external_lex_state = 10}, + [3019] = {.lex_state = 39, .external_lex_state = 10}, + [3020] = {.lex_state = 39, .external_lex_state = 12}, + [3021] = {.lex_state = 39, .external_lex_state = 9}, + [3022] = {.lex_state = 39, .external_lex_state = 10}, + [3023] = {.lex_state = 39, .external_lex_state = 10}, + [3024] = {.lex_state = 39, .external_lex_state = 10}, + [3025] = {.lex_state = 39, .external_lex_state = 10}, + [3026] = {.lex_state = 39, .external_lex_state = 10}, + [3027] = {.lex_state = 39, .external_lex_state = 9}, + [3028] = {.lex_state = 39, .external_lex_state = 11}, + [3029] = {.lex_state = 39, .external_lex_state = 8}, + [3030] = {.lex_state = 39, .external_lex_state = 11}, + [3031] = {.lex_state = 39, .external_lex_state = 9}, + [3032] = {.lex_state = 39, .external_lex_state = 10}, + [3033] = {.lex_state = 68, .external_lex_state = 9}, + [3034] = {.lex_state = 39, .external_lex_state = 10}, [3035] = {.lex_state = 39, .external_lex_state = 10}, [3036] = {.lex_state = 39, .external_lex_state = 9}, - [3037] = {.lex_state = 39, .external_lex_state = 10}, + [3037] = {.lex_state = 39, .external_lex_state = 9}, [3038] = {.lex_state = 39, .external_lex_state = 9}, - [3039] = {.lex_state = 39, .external_lex_state = 10}, - [3040] = {.lex_state = 39, .external_lex_state = 12}, - [3041] = {.lex_state = 39, .external_lex_state = 9}, - [3042] = {.lex_state = 39, .external_lex_state = 12}, - [3043] = {.lex_state = 39, .external_lex_state = 9}, + [3039] = {.lex_state = 39, .external_lex_state = 9}, + [3040] = {.lex_state = 39, .external_lex_state = 9}, + [3041] = {.lex_state = 39, .external_lex_state = 12}, + [3042] = {.lex_state = 39, .external_lex_state = 11}, + [3043] = {.lex_state = 39, .external_lex_state = 11}, [3044] = {.lex_state = 39, .external_lex_state = 9}, - [3045] = {.lex_state = 39, .external_lex_state = 9}, - [3046] = {.lex_state = 39, .external_lex_state = 9}, - [3047] = {.lex_state = 39, .external_lex_state = 9}, - [3048] = {.lex_state = 39, .external_lex_state = 10}, - [3049] = {.lex_state = 39, .external_lex_state = 12}, - [3050] = {.lex_state = 68, .external_lex_state = 9}, - [3051] = {.lex_state = 39, .external_lex_state = 10}, + [3045] = {.lex_state = 39, .external_lex_state = 11}, + [3046] = {.lex_state = 39, .external_lex_state = 10}, + [3047] = {.lex_state = 39, .external_lex_state = 10}, + [3048] = {.lex_state = 39, .external_lex_state = 12}, + [3049] = {.lex_state = 39, .external_lex_state = 9}, + [3050] = {.lex_state = 39, .external_lex_state = 10}, + [3051] = {.lex_state = 39, .external_lex_state = 9}, [3052] = {.lex_state = 39, .external_lex_state = 10}, - [3053] = {.lex_state = 39, .external_lex_state = 11}, - [3054] = {.lex_state = 39, .external_lex_state = 9}, + [3053] = {.lex_state = 39, .external_lex_state = 10}, + [3054] = {.lex_state = 39, .external_lex_state = 10}, [3055] = {.lex_state = 39, .external_lex_state = 9}, - [3056] = {.lex_state = 39, .external_lex_state = 10}, - [3057] = {.lex_state = 39, .external_lex_state = 9}, - [3058] = {.lex_state = 39, .external_lex_state = 9}, - [3059] = {.lex_state = 68, .external_lex_state = 9}, - [3060] = {.lex_state = 39, .external_lex_state = 9}, + [3056] = {.lex_state = 39, .external_lex_state = 9}, + [3057] = {.lex_state = 39, .external_lex_state = 11}, + [3058] = {.lex_state = 39, .external_lex_state = 8}, + [3059] = {.lex_state = 39, .external_lex_state = 8}, + [3060] = {.lex_state = 39, .external_lex_state = 10}, [3061] = {.lex_state = 39, .external_lex_state = 9}, - [3062] = {.lex_state = 39, .external_lex_state = 8}, - [3063] = {.lex_state = 39, .external_lex_state = 9}, - [3064] = {.lex_state = 39, .external_lex_state = 9}, + [3062] = {.lex_state = 39, .external_lex_state = 9}, + [3063] = {.lex_state = 39, .external_lex_state = 10}, + [3064] = {.lex_state = 39, .external_lex_state = 8}, [3065] = {.lex_state = 39, .external_lex_state = 9}, [3066] = {.lex_state = 39, .external_lex_state = 9}, - [3067] = {.lex_state = 39, .external_lex_state = 12}, - [3068] = {.lex_state = 39, .external_lex_state = 8}, + [3067] = {.lex_state = 39, .external_lex_state = 9}, + [3068] = {.lex_state = 39, .external_lex_state = 9}, [3069] = {.lex_state = 39, .external_lex_state = 9}, [3070] = {.lex_state = 39, .external_lex_state = 9}, - [3071] = {.lex_state = 68, .external_lex_state = 9}, + [3071] = {.lex_state = 39, .external_lex_state = 12}, [3072] = {.lex_state = 39, .external_lex_state = 9}, - [3073] = {.lex_state = 39, .external_lex_state = 8}, + [3073] = {.lex_state = 39, .external_lex_state = 9}, [3074] = {.lex_state = 39, .external_lex_state = 9}, - [3075] = {.lex_state = 39, .external_lex_state = 10}, + [3075] = {.lex_state = 39, .external_lex_state = 9}, [3076] = {.lex_state = 39, .external_lex_state = 9}, [3077] = {.lex_state = 39, .external_lex_state = 9}, - [3078] = {.lex_state = 39, .external_lex_state = 10}, - [3079] = {.lex_state = 39, .external_lex_state = 11}, - [3080] = {.lex_state = 68, .external_lex_state = 9}, - [3081] = {.lex_state = 39, .external_lex_state = 8}, + [3078] = {.lex_state = 39, .external_lex_state = 9}, + [3079] = {.lex_state = 39, .external_lex_state = 9}, + [3080] = {.lex_state = 39, .external_lex_state = 9}, + [3081] = {.lex_state = 39, .external_lex_state = 9}, [3082] = {.lex_state = 39, .external_lex_state = 9}, [3083] = {.lex_state = 39, .external_lex_state = 9}, - [3084] = {.lex_state = 39, .external_lex_state = 8}, - [3085] = {.lex_state = 39, .external_lex_state = 10}, + [3084] = {.lex_state = 39, .external_lex_state = 10}, + [3085] = {.lex_state = 39, .external_lex_state = 9}, [3086] = {.lex_state = 39, .external_lex_state = 9}, [3087] = {.lex_state = 39, .external_lex_state = 9}, - [3088] = {.lex_state = 39, .external_lex_state = 12}, - [3089] = {.lex_state = 39, .external_lex_state = 10}, - [3090] = {.lex_state = 39, .external_lex_state = 9}, + [3088] = {.lex_state = 39, .external_lex_state = 9}, + [3089] = {.lex_state = 39, .external_lex_state = 9}, + [3090] = {.lex_state = 39, .external_lex_state = 8}, [3091] = {.lex_state = 39, .external_lex_state = 9}, - [3092] = {.lex_state = 39, .external_lex_state = 9}, + [3092] = {.lex_state = 39, .external_lex_state = 8}, [3093] = {.lex_state = 39, .external_lex_state = 9}, - [3094] = {.lex_state = 39, .external_lex_state = 9}, - [3095] = {.lex_state = 39, .external_lex_state = 10}, - [3096] = {.lex_state = 39, .external_lex_state = 9}, + [3094] = {.lex_state = 39, .external_lex_state = 8}, + [3095] = {.lex_state = 39, .external_lex_state = 9}, + [3096] = {.lex_state = 39, .external_lex_state = 8}, [3097] = {.lex_state = 39, .external_lex_state = 9}, - [3098] = {.lex_state = 39, .external_lex_state = 8}, - [3099] = {.lex_state = 39, .external_lex_state = 9}, + [3098] = {.lex_state = 39, .external_lex_state = 11}, + [3099] = {.lex_state = 68, .external_lex_state = 9}, [3100] = {.lex_state = 39, .external_lex_state = 10}, - [3101] = {.lex_state = 68, .external_lex_state = 9}, + [3101] = {.lex_state = 39, .external_lex_state = 10}, [3102] = {.lex_state = 39, .external_lex_state = 9}, [3103] = {.lex_state = 39, .external_lex_state = 9}, [3104] = {.lex_state = 39, .external_lex_state = 9}, - [3105] = {.lex_state = 39, .external_lex_state = 11}, - [3106] = {.lex_state = 39, .external_lex_state = 8}, + [3105] = {.lex_state = 39, .external_lex_state = 8}, + [3106] = {.lex_state = 39, .external_lex_state = 9}, [3107] = {.lex_state = 39, .external_lex_state = 9}, [3108] = {.lex_state = 39, .external_lex_state = 9}, - [3109] = {.lex_state = 39, .external_lex_state = 12}, + [3109] = {.lex_state = 39, .external_lex_state = 9}, [3110] = {.lex_state = 39, .external_lex_state = 9}, - [3111] = {.lex_state = 39, .external_lex_state = 10}, + [3111] = {.lex_state = 68, .external_lex_state = 9}, [3112] = {.lex_state = 39, .external_lex_state = 9}, - [3113] = {.lex_state = 39, .external_lex_state = 9}, - [3114] = {.lex_state = 39, .external_lex_state = 10}, + [3113] = {.lex_state = 39, .external_lex_state = 10}, + [3114] = {.lex_state = 39, .external_lex_state = 9}, [3115] = {.lex_state = 39, .external_lex_state = 9}, - [3116] = {.lex_state = 39, .external_lex_state = 10}, + [3116] = {.lex_state = 39, .external_lex_state = 9}, [3117] = {.lex_state = 39, .external_lex_state = 9}, [3118] = {.lex_state = 39, .external_lex_state = 9}, [3119] = {.lex_state = 39, .external_lex_state = 9}, - [3120] = {.lex_state = 39, .external_lex_state = 9}, - [3121] = {.lex_state = 39, .external_lex_state = 12}, - [3122] = {.lex_state = 68, .external_lex_state = 9}, + [3120] = {.lex_state = 39, .external_lex_state = 12}, + [3121] = {.lex_state = 39, .external_lex_state = 10}, + [3122] = {.lex_state = 39, .external_lex_state = 9}, [3123] = {.lex_state = 39, .external_lex_state = 9}, - [3124] = {.lex_state = 39, .external_lex_state = 10}, - [3125] = {.lex_state = 39, .external_lex_state = 10}, + [3124] = {.lex_state = 39, .external_lex_state = 9}, + [3125] = {.lex_state = 39, .external_lex_state = 9}, [3126] = {.lex_state = 39, .external_lex_state = 9}, - [3127] = {.lex_state = 39, .external_lex_state = 10}, - [3128] = {.lex_state = 39, .external_lex_state = 9}, + [3127] = {.lex_state = 39, .external_lex_state = 9}, + [3128] = {.lex_state = 39, .external_lex_state = 10}, [3129] = {.lex_state = 39, .external_lex_state = 9}, - [3130] = {.lex_state = 39, .external_lex_state = 12}, + [3130] = {.lex_state = 39, .external_lex_state = 9}, [3131] = {.lex_state = 39, .external_lex_state = 9}, - [3132] = {.lex_state = 23, .external_lex_state = 9}, + [3132] = {.lex_state = 39, .external_lex_state = 9}, [3133] = {.lex_state = 39, .external_lex_state = 9}, [3134] = {.lex_state = 39, .external_lex_state = 9}, - [3135] = {.lex_state = 39, .external_lex_state = 11}, - [3136] = {.lex_state = 39, .external_lex_state = 9}, + [3135] = {.lex_state = 39, .external_lex_state = 9}, + [3136] = {.lex_state = 39, .external_lex_state = 10}, [3137] = {.lex_state = 39, .external_lex_state = 9}, [3138] = {.lex_state = 39, .external_lex_state = 9}, - [3139] = {.lex_state = 39, .external_lex_state = 10}, + [3139] = {.lex_state = 39, .external_lex_state = 9}, [3140] = {.lex_state = 39, .external_lex_state = 10}, - [3141] = {.lex_state = 39, .external_lex_state = 10}, - [3142] = {.lex_state = 39, .external_lex_state = 12}, - [3143] = {.lex_state = 39, .external_lex_state = 10}, - [3144] = {.lex_state = 39, .external_lex_state = 10}, + [3141] = {.lex_state = 39, .external_lex_state = 11}, + [3142] = {.lex_state = 39, .external_lex_state = 9}, + [3143] = {.lex_state = 39, .external_lex_state = 9}, + [3144] = {.lex_state = 39, .external_lex_state = 12}, [3145] = {.lex_state = 39, .external_lex_state = 10}, [3146] = {.lex_state = 39, .external_lex_state = 9}, - [3147] = {.lex_state = 39, .external_lex_state = 10}, - [3148] = {.lex_state = 39, .external_lex_state = 9}, + [3147] = {.lex_state = 39, .external_lex_state = 9}, + [3148] = {.lex_state = 39, .external_lex_state = 11}, [3149] = {.lex_state = 39, .external_lex_state = 11}, - [3150] = {.lex_state = 39, .external_lex_state = 11}, - [3151] = {.lex_state = 39, .external_lex_state = 10}, + [3150] = {.lex_state = 39, .external_lex_state = 10}, + [3151] = {.lex_state = 39, .external_lex_state = 9}, [3152] = {.lex_state = 39, .external_lex_state = 10}, - [3153] = {.lex_state = 39, .external_lex_state = 12}, - [3154] = {.lex_state = 39, .external_lex_state = 9}, + [3153] = {.lex_state = 39, .external_lex_state = 10}, + [3154] = {.lex_state = 39, .external_lex_state = 10}, [3155] = {.lex_state = 39, .external_lex_state = 9}, - [3156] = {.lex_state = 39, .external_lex_state = 10}, + [3156] = {.lex_state = 39, .external_lex_state = 9}, [3157] = {.lex_state = 39, .external_lex_state = 9}, - [3158] = {.lex_state = 39, .external_lex_state = 10}, - [3159] = {.lex_state = 39, .external_lex_state = 10}, - [3160] = {.lex_state = 39, .external_lex_state = 9}, + [3158] = {.lex_state = 39, .external_lex_state = 9}, + [3159] = {.lex_state = 39, .external_lex_state = 11}, + [3160] = {.lex_state = 39, .external_lex_state = 10}, [3161] = {.lex_state = 39, .external_lex_state = 9}, - [3162] = {.lex_state = 39, .external_lex_state = 10}, - [3163] = {.lex_state = 39, .external_lex_state = 9}, + [3162] = {.lex_state = 39, .external_lex_state = 12}, + [3163] = {.lex_state = 39, .external_lex_state = 10}, [3164] = {.lex_state = 39, .external_lex_state = 10}, - [3165] = {.lex_state = 39, .external_lex_state = 9}, - [3166] = {.lex_state = 39, .external_lex_state = 11}, + [3165] = {.lex_state = 39, .external_lex_state = 12}, + [3166] = {.lex_state = 39, .external_lex_state = 9}, [3167] = {.lex_state = 39, .external_lex_state = 9}, - [3168] = {.lex_state = 39, .external_lex_state = 9}, + [3168] = {.lex_state = 39, .external_lex_state = 10}, [3169] = {.lex_state = 39, .external_lex_state = 9}, - [3170] = {.lex_state = 39, .external_lex_state = 9}, - [3171] = {.lex_state = 39, .external_lex_state = 9}, + [3170] = {.lex_state = 39, .external_lex_state = 10}, + [3171] = {.lex_state = 39, .external_lex_state = 11}, [3172] = {.lex_state = 39, .external_lex_state = 9}, [3173] = {.lex_state = 39, .external_lex_state = 9}, [3174] = {.lex_state = 39, .external_lex_state = 9}, [3175] = {.lex_state = 39, .external_lex_state = 9}, [3176] = {.lex_state = 39, .external_lex_state = 9}, - [3177] = {.lex_state = 39, .external_lex_state = 11}, + [3177] = {.lex_state = 39, .external_lex_state = 9}, [3178] = {.lex_state = 39, .external_lex_state = 9}, [3179] = {.lex_state = 39, .external_lex_state = 10}, - [3180] = {.lex_state = 39, .external_lex_state = 10}, + [3180] = {.lex_state = 39, .external_lex_state = 9}, [3181] = {.lex_state = 39, .external_lex_state = 10}, - [3182] = {.lex_state = 39, .external_lex_state = 10}, - [3183] = {.lex_state = 39, .external_lex_state = 9}, + [3182] = {.lex_state = 39, .external_lex_state = 11}, + [3183] = {.lex_state = 39, .external_lex_state = 8}, [3184] = {.lex_state = 39, .external_lex_state = 9}, - [3185] = {.lex_state = 39, .external_lex_state = 11}, + [3185] = {.lex_state = 39, .external_lex_state = 9}, [3186] = {.lex_state = 39, .external_lex_state = 9}, [3187] = {.lex_state = 39, .external_lex_state = 9}, [3188] = {.lex_state = 39, .external_lex_state = 9}, - [3189] = {.lex_state = 39, .external_lex_state = 11}, + [3189] = {.lex_state = 39, .external_lex_state = 9}, [3190] = {.lex_state = 39, .external_lex_state = 9}, [3191] = {.lex_state = 39, .external_lex_state = 9}, - [3192] = {.lex_state = 39, .external_lex_state = 9}, - [3193] = {.lex_state = 39, .external_lex_state = 11}, - [3194] = {.lex_state = 39, .external_lex_state = 9}, + [3192] = {.lex_state = 39, .external_lex_state = 11}, + [3193] = {.lex_state = 39, .external_lex_state = 9}, + [3194] = {.lex_state = 39, .external_lex_state = 11}, [3195] = {.lex_state = 39, .external_lex_state = 9}, - [3196] = {.lex_state = 39, .external_lex_state = 9}, - [3197] = {.lex_state = 39, .external_lex_state = 10}, + [3196] = {.lex_state = 39, .external_lex_state = 10}, + [3197] = {.lex_state = 39, .external_lex_state = 9}, [3198] = {.lex_state = 39, .external_lex_state = 10}, [3199] = {.lex_state = 39, .external_lex_state = 9}, - [3200] = {.lex_state = 39, .external_lex_state = 9}, + [3200] = {.lex_state = 39, .external_lex_state = 10}, [3201] = {.lex_state = 39, .external_lex_state = 9}, - [3202] = {.lex_state = 39, .external_lex_state = 9}, + [3202] = {.lex_state = 39, .external_lex_state = 10}, [3203] = {.lex_state = 39, .external_lex_state = 9}, [3204] = {.lex_state = 39, .external_lex_state = 9}, [3205] = {.lex_state = 39, .external_lex_state = 9}, [3206] = {.lex_state = 39, .external_lex_state = 9}, [3207] = {.lex_state = 39, .external_lex_state = 9}, [3208] = {.lex_state = 39, .external_lex_state = 9}, - [3209] = {.lex_state = 39, .external_lex_state = 10}, - [3210] = {.lex_state = 39, .external_lex_state = 11}, + [3209] = {.lex_state = 39, .external_lex_state = 9}, + [3210] = {.lex_state = 39, .external_lex_state = 9}, [3211] = {.lex_state = 39, .external_lex_state = 9}, - [3212] = {.lex_state = 39, .external_lex_state = 10}, + [3212] = {.lex_state = 39, .external_lex_state = 9}, [3213] = {.lex_state = 39, .external_lex_state = 9}, - [3214] = {.lex_state = 39, .external_lex_state = 11}, - [3215] = {.lex_state = 39, .external_lex_state = 10}, - [3216] = {.lex_state = 39, .external_lex_state = 11}, - [3217] = {.lex_state = 39, .external_lex_state = 11}, - [3218] = {.lex_state = 39, .external_lex_state = 11}, + [3214] = {.lex_state = 39, .external_lex_state = 9}, + [3215] = {.lex_state = 39, .external_lex_state = 9}, + [3216] = {.lex_state = 39, .external_lex_state = 9}, + [3217] = {.lex_state = 39, .external_lex_state = 9}, + [3218] = {.lex_state = 39, .external_lex_state = 9}, [3219] = {.lex_state = 39, .external_lex_state = 9}, - [3220] = {.lex_state = 39, .external_lex_state = 8}, + [3220] = {.lex_state = 39, .external_lex_state = 9}, [3221] = {.lex_state = 39, .external_lex_state = 9}, - [3222] = {.lex_state = 39, .external_lex_state = 10}, - [3223] = {.lex_state = 39, .external_lex_state = 10}, + [3222] = {.lex_state = 39, .external_lex_state = 9}, + [3223] = {.lex_state = 39, .external_lex_state = 9}, [3224] = {.lex_state = 39, .external_lex_state = 9}, [3225] = {.lex_state = 39, .external_lex_state = 9}, - [3226] = {.lex_state = 39, .external_lex_state = 10}, - [3227] = {.lex_state = 39, .external_lex_state = 8}, - [3228] = {.lex_state = 39, .external_lex_state = 11}, - [3229] = {.lex_state = 39, .external_lex_state = 10}, - [3230] = {.lex_state = 39, .external_lex_state = 9}, - [3231] = {.lex_state = 39, .external_lex_state = 11}, - [3232] = {.lex_state = 39, .external_lex_state = 10}, - [3233] = {.lex_state = 39, .external_lex_state = 10}, - [3234] = {.lex_state = 39, .external_lex_state = 12}, - [3235] = {.lex_state = 39, .external_lex_state = 10}, - [3236] = {.lex_state = 39, .external_lex_state = 10}, - [3237] = {.lex_state = 39, .external_lex_state = 11}, - [3238] = {.lex_state = 39, .external_lex_state = 10}, - [3239] = {.lex_state = 39, .external_lex_state = 11}, - [3240] = {.lex_state = 39, .external_lex_state = 9}, - [3241] = {.lex_state = 39, .external_lex_state = 12}, - [3242] = {.lex_state = 39, .external_lex_state = 9}, - [3243] = {.lex_state = 39, .external_lex_state = 9}, - [3244] = {.lex_state = 39, .external_lex_state = 9}, - [3245] = {.lex_state = 39, .external_lex_state = 9}, - [3246] = {.lex_state = 39, .external_lex_state = 9}, - [3247] = {.lex_state = 39, .external_lex_state = 9}, - [3248] = {.lex_state = 39, .external_lex_state = 9}, - [3249] = {.lex_state = 39, .external_lex_state = 9}, - [3250] = {.lex_state = 39, .external_lex_state = 12}, - [3251] = {.lex_state = 39, .external_lex_state = 9}, - [3252] = {.lex_state = 39, .external_lex_state = 10}, - [3253] = {.lex_state = 39, .external_lex_state = 10}, - [3254] = {.lex_state = 39, .external_lex_state = 9}, - [3255] = {.lex_state = 39, .external_lex_state = 9}, - [3256] = {.lex_state = 39, .external_lex_state = 10}, - [3257] = {.lex_state = 39, .external_lex_state = 9}, - [3258] = {.lex_state = 39, .external_lex_state = 11}, - [3259] = {.lex_state = 39, .external_lex_state = 9}, - [3260] = {.lex_state = 39, .external_lex_state = 9}, - [3261] = {.lex_state = 39, .external_lex_state = 9}, - [3262] = {.lex_state = 39, .external_lex_state = 9}, - [3263] = {.lex_state = 39, .external_lex_state = 9}, - [3264] = {.lex_state = 39, .external_lex_state = 9}, - [3265] = {.lex_state = 39, .external_lex_state = 9}, - [3266] = {.lex_state = 39, .external_lex_state = 9}, - [3267] = {.lex_state = 39, .external_lex_state = 9}, - [3268] = {.lex_state = 39, .external_lex_state = 9}, - [3269] = {.lex_state = 39, .external_lex_state = 9}, - [3270] = {.lex_state = 39, .external_lex_state = 9}, - [3271] = {.lex_state = 39, .external_lex_state = 9}, - [3272] = {.lex_state = 39, .external_lex_state = 9}, - [3273] = {.lex_state = 39, .external_lex_state = 9}, - [3274] = {.lex_state = 39, .external_lex_state = 9}, - [3275] = {.lex_state = 39, .external_lex_state = 9}, - [3276] = {.lex_state = 39, .external_lex_state = 9}, - [3277] = {.lex_state = 39, .external_lex_state = 9}, - [3278] = {.lex_state = 39, .external_lex_state = 9}, - [3279] = {.lex_state = 39, .external_lex_state = 9}, - [3280] = {.lex_state = 39, .external_lex_state = 9}, - [3281] = {.lex_state = 39, .external_lex_state = 9}, - [3282] = {.lex_state = 39, .external_lex_state = 9}, - [3283] = {.lex_state = 39, .external_lex_state = 9}, - [3284] = {.lex_state = 39, .external_lex_state = 9}, - [3285] = {.lex_state = 39, .external_lex_state = 9}, - [3286] = {.lex_state = 39, .external_lex_state = 9}, - [3287] = {.lex_state = 39, .external_lex_state = 9}, - [3288] = {.lex_state = 39, .external_lex_state = 9}, + [3226] = {.lex_state = 39, .external_lex_state = 9}, }; enum { @@ -11378,62 +11247,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(3065), + [sym_module] = STATE(3097), [sym__statement] = STATE(35), [sym__simple_statements] = STATE(35), - [sym_import_statement] = STATE(3062), - [sym_assert_statement] = STATE(3062), + [sym_import_statement] = STATE(3096), + [sym_assert_statement] = STATE(3096), [sym_if_statement] = STATE(35), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(35), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3062), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3096), [sym_schema_statement] = STATE(35), [sym_mixin_statement] = STATE(35), [sym_protocol_statement] = STATE(35), [sym_rule_statement] = STATE(35), [sym_check_statement] = STATE(35), [sym_decorated_definition] = STATE(35), - [sym_decorator] = STATE(2264), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2393), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3062), - [sym_augmented_assignment] = STATE(3062), - [sym_unification] = STATE(3062), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2207), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2357), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3096), + [sym_augmented_assignment] = STATE(3096), + [sym_unification] = STATE(3096), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(35), - [aux_sym_decorated_definition_repeat1] = STATE(2264), + [aux_sym_decorated_definition_repeat1] = STATE(2207), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11472,62 +11340,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [2] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1732), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [sym__statement] = STATE(36), + [sym__simple_statements] = STATE(36), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(36), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(36), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(36), + [sym_mixin_statement] = STATE(36), + [sym_protocol_statement] = STATE(36), + [sym_rule_statement] = STATE(36), + [sym_check_statement] = STATE(36), + [sym_decorated_definition] = STATE(36), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1421), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(36), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11566,62 +11433,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [3] = { + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(38), + [sym_mixin_statement] = STATE(38), + [sym_protocol_statement] = STATE(38), + [sym_rule_statement] = STATE(38), + [sym_check_statement] = STATE(38), + [sym_decorated_definition] = STATE(38), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1610), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_lambda] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(63), + [anon_sym_protocol] = ACTIONS(65), + [anon_sym_rule] = ACTIONS(67), + [anon_sym_check] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(41), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(73), + [sym_string_start] = ACTIONS(55), + }, + [4] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1735), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(2975), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11656,66 +11615,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [4] = { + [5] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1737), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(2901), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11750,66 +11708,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [5] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3143), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [6] = { + [sym__statement] = STATE(36), + [sym__simple_statements] = STATE(36), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(36), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(36), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(36), + [sym_mixin_statement] = STATE(36), + [sym_protocol_statement] = STATE(36), + [sym_rule_statement] = STATE(36), + [sym_check_statement] = STATE(36), + [sym_decorated_definition] = STATE(36), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1174), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(36), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11844,66 +11801,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, - [6] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1733), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [7] = { + [sym__statement] = STATE(36), + [sym__simple_statements] = STATE(36), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(36), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(36), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(36), + [sym_mixin_statement] = STATE(36), + [sym_protocol_statement] = STATE(36), + [sym_rule_statement] = STATE(36), + [sym_check_statement] = STATE(36), + [sym_decorated_definition] = STATE(36), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1621), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(36), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11941,63 +11897,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, - [7] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3021), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [8] = { + [sym__statement] = STATE(36), + [sym__simple_statements] = STATE(36), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(36), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(36), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(36), + [sym_mixin_statement] = STATE(36), + [sym_protocol_statement] = STATE(36), + [sym_rule_statement] = STATE(36), + [sym_check_statement] = STATE(36), + [sym_decorated_definition] = STATE(36), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1622), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(36), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12032,66 +11987,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, - [8] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1224), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [9] = { + [sym__statement] = STATE(36), + [sym__simple_statements] = STATE(36), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(36), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(36), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(36), + [sym_mixin_statement] = STATE(36), + [sym_protocol_statement] = STATE(36), + [sym_rule_statement] = STATE(36), + [sym_check_statement] = STATE(36), + [sym_decorated_definition] = STATE(36), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1652), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(36), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12129,63 +12083,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, - [9] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3223), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [10] = { + [sym__statement] = STATE(36), + [sym__simple_statements] = STATE(36), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(36), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(36), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(36), + [sym_mixin_statement] = STATE(36), + [sym_protocol_statement] = STATE(36), + [sym_rule_statement] = STATE(36), + [sym_check_statement] = STATE(36), + [sym_decorated_definition] = STATE(36), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1634), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(36), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12220,66 +12173,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, - [10] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(34), - [sym_mixin_statement] = STATE(34), - [sym_protocol_statement] = STATE(34), - [sym_rule_statement] = STATE(34), - [sym_check_statement] = STATE(34), - [sym_decorated_definition] = STATE(34), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1210), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [11] = { + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(2913), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12317,63 +12269,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [11] = { + [12] = { [sym__statement] = STATE(37), [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(37), [sym_mixin_statement] = STATE(37), [sym_protocol_statement] = STATE(37), [sym_rule_statement] = STATE(37), [sym_check_statement] = STATE(37), [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1445), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(2942), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12408,66 +12359,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [12] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3215), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [13] = { + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(2922), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12502,66 +12452,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [13] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3002), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [14] = { + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(2971), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12596,66 +12545,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [14] = { + [15] = { [sym__statement] = STATE(38), [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(38), [sym_mixin_statement] = STATE(38), [sym_protocol_statement] = STATE(38), [sym_rule_statement] = STATE(38), [sym_check_statement] = STATE(38), [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3100), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1197), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12693,63 +12641,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(73), [sym_string_start] = ACTIONS(55), }, - [15] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3124), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [16] = { + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(2908), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12784,66 +12731,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [16] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(2973), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [17] = { + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3145), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12878,66 +12824,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [17] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3212), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [18] = { + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3152), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12972,66 +12917,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [18] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3125), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [19] = { + [sym__statement] = STATE(36), + [sym__simple_statements] = STATE(36), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(36), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(36), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(36), + [sym_mixin_statement] = STATE(36), + [sym_protocol_statement] = STATE(36), + [sym_rule_statement] = STATE(36), + [sym_check_statement] = STATE(36), + [sym_decorated_definition] = STATE(36), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1635), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(36), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13066,66 +13010,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, - [19] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(34), - [sym_mixin_statement] = STATE(34), - [sym_protocol_statement] = STATE(34), - [sym_rule_statement] = STATE(34), - [sym_check_statement] = STATE(34), - [sym_decorated_definition] = STATE(34), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1740), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [20] = { + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3200), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13163,63 +13106,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [20] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3181), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [21] = { + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3136), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13254,66 +13196,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [21] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(34), - [sym_mixin_statement] = STATE(34), - [sym_protocol_statement] = STATE(34), - [sym_rule_statement] = STATE(34), - [sym_check_statement] = STATE(34), - [sym_decorated_definition] = STATE(34), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1682), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [22] = { + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3154), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13351,63 +13292,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [22] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3159), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [23] = { + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3101), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13442,66 +13382,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, - [23] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(34), - [sym_mixin_statement] = STATE(34), - [sym_protocol_statement] = STATE(34), - [sym_rule_statement] = STATE(34), - [sym_check_statement] = STATE(34), - [sym_decorated_definition] = STATE(34), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1711), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [24] = { + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(38), + [sym_mixin_statement] = STATE(38), + [sym_protocol_statement] = STATE(38), + [sym_rule_statement] = STATE(38), + [sym_check_statement] = STATE(38), + [sym_decorated_definition] = STATE(38), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1704), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13536,160 +13475,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(75), - [sym_string_start] = ACTIONS(55), - }, - [24] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(37), - [sym_mixin_statement] = STATE(37), - [sym_protocol_statement] = STATE(37), - [sym_rule_statement] = STATE(37), - [sym_check_statement] = STATE(37), - [sym_decorated_definition] = STATE(37), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1694), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2267), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(71), + [sym__dedent] = ACTIONS(73), [sym_string_start] = ACTIONS(55), }, [25] = { [sym__statement] = STATE(38), [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(38), [sym_mixin_statement] = STATE(38), [sym_protocol_statement] = STATE(38), [sym_rule_statement] = STATE(38), [sym_check_statement] = STATE(38), [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3095), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1717), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13728,62 +13572,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [26] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(34), - [sym_mixin_statement] = STATE(34), - [sym_protocol_statement] = STATE(34), - [sym_rule_statement] = STATE(34), - [sym_check_statement] = STATE(34), - [sym_decorated_definition] = STATE(34), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1708), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3019), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13824,60 +13667,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [27] = { [sym__statement] = STATE(38), [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(38), [sym_mixin_statement] = STATE(38), [sym_protocol_statement] = STATE(38), [sym_rule_statement] = STATE(38), [sym_check_statement] = STATE(38), [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3085), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1708), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13916,62 +13758,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [28] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(34), - [sym_mixin_statement] = STATE(34), - [sym_protocol_statement] = STATE(34), - [sym_rule_statement] = STATE(34), - [sym_check_statement] = STATE(34), - [sym_decorated_definition] = STATE(34), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1433), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3150), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14010,62 +13851,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [29] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3014), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3025), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14100,66 +13940,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, [30] = { [sym__statement] = STATE(38), [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(38), [sym_mixin_statement] = STATE(38), [sym_protocol_statement] = STATE(38), [sym_rule_statement] = STATE(38), [sym_check_statement] = STATE(38), [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3009), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1398), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14198,62 +14037,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [31] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(38), - [sym_mixin_statement] = STATE(38), - [sym_protocol_statement] = STATE(38), - [sym_rule_statement] = STATE(38), - [sym_check_statement] = STATE(38), - [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3005), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3050), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14288,66 +14126,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(73), + [sym__dedent] = ACTIONS(75), [sym_string_start] = ACTIONS(55), }, [32] = { [sym__statement] = STATE(38), [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(38), [sym_mixin_statement] = STATE(38), [sym_protocol_statement] = STATE(38), [sym_rule_statement] = STATE(38), [sym_check_statement] = STATE(38), [sym_decorated_definition] = STATE(38), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(3007), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(1590), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14386,62 +14223,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [33] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(34), - [sym_mixin_statement] = STATE(34), - [sym_protocol_statement] = STATE(34), - [sym_rule_statement] = STATE(34), - [sym_check_statement] = STATE(34), - [sym_decorated_definition] = STATE(34), - [sym_decorator] = STATE(2267), - [sym_block] = STATE(1745), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(37), + [sym_mixin_statement] = STATE(37), + [sym_protocol_statement] = STATE(37), + [sym_rule_statement] = STATE(37), + [sym_check_statement] = STATE(37), + [sym_decorated_definition] = STATE(37), + [sym_decorator] = STATE(2211), + [sym_block] = STATE(3054), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14480,155 +14316,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [34] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_schema_statement] = STATE(39), - [sym_mixin_statement] = STATE(39), - [sym_protocol_statement] = STATE(39), - [sym_rule_statement] = STATE(39), - [sym_check_statement] = STATE(39), - [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2267), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2267), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_if] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_schema] = ACTIONS(61), - [anon_sym_mixin] = ACTIONS(63), - [anon_sym_protocol] = ACTIONS(65), - [anon_sym_rule] = ACTIONS(67), - [anon_sym_check] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(41), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [sym__statement] = STATE(34), + [sym__simple_statements] = STATE(34), + [sym_import_statement] = STATE(3096), + [sym_assert_statement] = STATE(3096), + [sym_if_statement] = STATE(34), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(34), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3096), + [sym_schema_statement] = STATE(34), + [sym_mixin_statement] = STATE(34), + [sym_protocol_statement] = STATE(34), + [sym_rule_statement] = STATE(34), + [sym_check_statement] = STATE(34), + [sym_decorated_definition] = STATE(34), + [sym_decorator] = STATE(2207), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2357), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3096), + [sym_augmented_assignment] = STATE(3096), + [sym_unification] = STATE(3096), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(34), + [aux_sym_decorated_definition_repeat1] = STATE(2207), + [ts_builtin_sym_end] = ACTIONS(77), + [sym_identifier] = ACTIONS(79), + [anon_sym_import] = ACTIONS(82), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(88), + [anon_sym_if] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(94), + [anon_sym_LBRACK] = ACTIONS(97), + [anon_sym_lambda] = ACTIONS(100), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_all] = ACTIONS(106), + [anon_sym_any] = ACTIONS(106), + [anon_sym_filter] = ACTIONS(106), + [anon_sym_map] = ACTIONS(106), + [anon_sym_type] = ACTIONS(109), + [anon_sym_schema] = ACTIONS(112), + [anon_sym_mixin] = ACTIONS(115), + [anon_sym_protocol] = ACTIONS(118), + [anon_sym_rule] = ACTIONS(121), + [anon_sym_check] = ACTIONS(124), + [anon_sym_AT] = ACTIONS(127), + [anon_sym_QMARK_DOT] = ACTIONS(130), + [anon_sym_not] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(136), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(136), + [anon_sym_TILDE] = ACTIONS(136), + [sym_integer] = ACTIONS(142), + [sym_float] = ACTIONS(145), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_none] = ACTIONS(142), + [sym_undefined] = ACTIONS(142), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(77), - [sym_string_start] = ACTIONS(55), + [sym_string_start] = ACTIONS(148), }, [35] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3062), - [sym_assert_statement] = STATE(3062), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3062), - [sym_schema_statement] = STATE(36), - [sym_mixin_statement] = STATE(36), - [sym_protocol_statement] = STATE(36), - [sym_rule_statement] = STATE(36), - [sym_check_statement] = STATE(36), - [sym_decorated_definition] = STATE(36), - [sym_decorator] = STATE(2264), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2393), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3062), - [sym_augmented_assignment] = STATE(3062), - [sym_unification] = STATE(3062), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2264), - [ts_builtin_sym_end] = ACTIONS(79), + [sym__statement] = STATE(34), + [sym__simple_statements] = STATE(34), + [sym_import_statement] = STATE(3096), + [sym_assert_statement] = STATE(3096), + [sym_if_statement] = STATE(34), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(34), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3096), + [sym_schema_statement] = STATE(34), + [sym_mixin_statement] = STATE(34), + [sym_protocol_statement] = STATE(34), + [sym_rule_statement] = STATE(34), + [sym_check_statement] = STATE(34), + [sym_decorated_definition] = STATE(34), + [sym_decorator] = STATE(2207), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2357), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3096), + [sym_augmented_assignment] = STATE(3096), + [sym_unification] = STATE(3096), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(34), + [aux_sym_decorated_definition_repeat1] = STATE(2207), + [ts_builtin_sym_end] = ACTIONS(151), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14666,154 +14500,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [36] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3062), - [sym_assert_statement] = STATE(3062), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1879), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3062), - [sym_schema_statement] = STATE(36), - [sym_mixin_statement] = STATE(36), - [sym_protocol_statement] = STATE(36), - [sym_rule_statement] = STATE(36), - [sym_check_statement] = STATE(36), - [sym_decorated_definition] = STATE(36), - [sym_decorator] = STATE(2264), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2393), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3062), - [sym_augmented_assignment] = STATE(3062), - [sym_unification] = STATE(3062), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2264), - [ts_builtin_sym_end] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), - [anon_sym_import] = ACTIONS(86), - [anon_sym_DOT] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(92), - [anon_sym_if] = ACTIONS(95), - [anon_sym_LPAREN] = ACTIONS(98), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_lambda] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_all] = ACTIONS(110), - [anon_sym_any] = ACTIONS(110), - [anon_sym_filter] = ACTIONS(110), - [anon_sym_map] = ACTIONS(110), - [anon_sym_type] = ACTIONS(113), - [anon_sym_schema] = ACTIONS(116), - [anon_sym_mixin] = ACTIONS(119), - [anon_sym_protocol] = ACTIONS(122), - [anon_sym_rule] = ACTIONS(125), - [anon_sym_check] = ACTIONS(128), - [anon_sym_AT] = ACTIONS(131), - [anon_sym_QMARK_DOT] = ACTIONS(134), - [anon_sym_not] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(140), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(140), - [anon_sym_TILDE] = ACTIONS(140), - [sym_integer] = ACTIONS(146), - [sym_float] = ACTIONS(149), - [sym_true] = ACTIONS(146), - [sym_false] = ACTIONS(146), - [sym_none] = ACTIONS(146), - [sym_undefined] = ACTIONS(146), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(152), - }, - [37] = { [sym__statement] = STATE(39), [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(39), [sym_mixin_statement] = STATE(39), [sym_protocol_statement] = STATE(39), [sym_rule_statement] = STATE(39), [sym_check_statement] = STATE(39), [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2267), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14848,65 +14588,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(155), + [sym__dedent] = ACTIONS(153), [sym_string_start] = ACTIONS(55), }, - [38] = { + [37] = { [sym__statement] = STATE(39), [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(39), [sym_mixin_statement] = STATE(39), [sym_protocol_statement] = STATE(39), [sym_rule_statement] = STATE(39), [sym_check_statement] = STATE(39), [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2267), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2267), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14941,152 +14680,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(157), + [sym__dedent] = ACTIONS(155), [sym_string_start] = ACTIONS(55), }, - [39] = { + [38] = { [sym__statement] = STATE(39), [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1879), + [sym_schema_expr] = STATE(1909), [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), [sym_schema_statement] = STATE(39), [sym_mixin_statement] = STATE(39), [sym_protocol_statement] = STATE(39), [sym_rule_statement] = STATE(39), [sym_check_statement] = STATE(39), [sym_decorated_definition] = STATE(39), - [sym_decorator] = STATE(2267), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2400), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [sym_decorator] = STATE(2211), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2267), - [sym_identifier] = ACTIONS(83), - [anon_sym_import] = ACTIONS(86), - [anon_sym_DOT] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(92), - [anon_sym_if] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(98), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_lambda] = ACTIONS(104), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_all] = ACTIONS(110), - [anon_sym_any] = ACTIONS(110), - [anon_sym_filter] = ACTIONS(110), - [anon_sym_map] = ACTIONS(110), - [anon_sym_type] = ACTIONS(113), - [anon_sym_schema] = ACTIONS(165), - [anon_sym_mixin] = ACTIONS(168), - [anon_sym_protocol] = ACTIONS(171), - [anon_sym_rule] = ACTIONS(174), - [anon_sym_check] = ACTIONS(177), - [anon_sym_AT] = ACTIONS(131), - [anon_sym_QMARK_DOT] = ACTIONS(134), - [anon_sym_not] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(140), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(140), - [anon_sym_TILDE] = ACTIONS(140), - [sym_integer] = ACTIONS(146), - [sym_float] = ACTIONS(149), - [sym_true] = ACTIONS(146), - [sym_false] = ACTIONS(146), - [sym_none] = ACTIONS(146), - [sym_undefined] = ACTIONS(146), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(81), - [sym_string_start] = ACTIONS(152), - }, - [40] = { - [sym__simple_statements] = STATE(3056), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [aux_sym_decorated_definition_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), [anon_sym_assert] = ACTIONS(15), + [anon_sym_if] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15094,6 +14752,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_type] = ACTIONS(29), + [anon_sym_schema] = ACTIONS(61), + [anon_sym_mixin] = ACTIONS(63), + [anon_sym_protocol] = ACTIONS(65), + [anon_sym_rule] = ACTIONS(67), + [anon_sym_check] = ACTIONS(69), + [anon_sym_AT] = ACTIONS(41), [anon_sym_QMARK_DOT] = ACTIONS(43), [anon_sym_not] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(47), @@ -15108,129 +14772,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(182), - [sym__indent] = ACTIONS(184), + [sym__dedent] = ACTIONS(157), [sym_string_start] = ACTIONS(55), }, - [41] = { - [sym__simple_statements] = STATE(1653), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2508), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [39] = { + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1909), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_schema_statement] = STATE(39), + [sym_mixin_statement] = STATE(39), + [sym_protocol_statement] = STATE(39), + [sym_rule_statement] = STATE(39), + [sym_check_statement] = STATE(39), + [sym_decorated_definition] = STATE(39), + [sym_decorator] = STATE(2211), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2340), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(79), + [anon_sym_import] = ACTIONS(82), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(88), + [anon_sym_if] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(94), + [anon_sym_LBRACK] = ACTIONS(162), + [anon_sym_lambda] = ACTIONS(100), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_all] = ACTIONS(106), + [anon_sym_any] = ACTIONS(106), + [anon_sym_filter] = ACTIONS(106), + [anon_sym_map] = ACTIONS(106), + [anon_sym_type] = ACTIONS(109), + [anon_sym_schema] = ACTIONS(165), + [anon_sym_mixin] = ACTIONS(168), + [anon_sym_protocol] = ACTIONS(171), + [anon_sym_rule] = ACTIONS(174), + [anon_sym_check] = ACTIONS(177), + [anon_sym_AT] = ACTIONS(127), + [anon_sym_QMARK_DOT] = ACTIONS(130), + [anon_sym_not] = ACTIONS(133), + [anon_sym_PLUS] = ACTIONS(136), + [anon_sym_DQUOTE] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(136), + [anon_sym_TILDE] = ACTIONS(136), + [sym_integer] = ACTIONS(142), + [sym_float] = ACTIONS(145), + [sym_true] = ACTIONS(142), + [sym_false] = ACTIONS(142), + [sym_none] = ACTIONS(142), + [sym_undefined] = ACTIONS(142), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(186), - [sym__indent] = ACTIONS(188), - [sym_string_start] = ACTIONS(55), + [sym__dedent] = ACTIONS(77), + [sym_string_start] = ACTIONS(148), }, - [42] = { - [sym__simple_statements] = STATE(1187), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2508), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [40] = { + [sym__simple_statements] = STATE(3121), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15258,204 +14937,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(190), - [sym__indent] = ACTIONS(192), + [sym__newline] = ACTIONS(182), + [sym__indent] = ACTIONS(184), [sym_string_start] = ACTIONS(55), }, - [43] = { - [sym_schema_expr] = STATE(999), - [sym_lambda_expr] = STATE(999), - [sym_quant_expr] = STATE(999), - [sym_quant_op] = STATE(2976), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(1180), - [sym_as_expression] = STATE(997), - [sym_selector_expression] = STATE(1090), - [sym_primary_expression] = STATE(316), - [sym_paren_expression] = STATE(999), - [sym_braces_expression] = STATE(999), - [sym_not_operator] = STATE(997), - [sym_boolean_operator] = STATE(997), - [sym_long_expression] = STATE(997), - [sym_string_literal_expr] = STATE(999), - [sym_config_expr] = STATE(999), - [sym_binary_operator] = STATE(999), - [sym_unary_operator] = STATE(999), - [sym_sequence_operation] = STATE(997), - [sym_in_operation] = STATE(996), - [sym_not_in_operation] = STATE(996), - [sym_concatenation] = STATE(996), - [sym_comparison_operator] = STATE(997), - [sym_select_suffix] = STATE(999), - [sym_attribute] = STATE(999), - [sym_optional_attribute] = STATE(999), - [sym_optional_item] = STATE(999), - [sym_null_coalesce] = STATE(999), - [sym_subscript] = STATE(919), - [sym_call] = STATE(919), - [sym_list] = STATE(924), - [sym_dictionary] = STATE(924), - [sym_list_comprehension] = STATE(924), - [sym_dictionary_comprehension] = STATE(924), - [sym_conditional_expression] = STATE(997), - [sym_string] = STATE(999), - [aux_sym_check_statement_repeat1] = STATE(44), - [sym_identifier] = ACTIONS(194), - [anon_sym_import] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_assert] = ACTIONS(194), - [anon_sym_if] = ACTIONS(194), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_LBRACK] = ACTIONS(196), - [anon_sym_lambda] = ACTIONS(194), - [anon_sym_LBRACE] = ACTIONS(196), - [anon_sym_all] = ACTIONS(194), - [anon_sym_any] = ACTIONS(194), - [anon_sym_filter] = ACTIONS(194), - [anon_sym_map] = ACTIONS(194), - [anon_sym_type] = ACTIONS(194), - [anon_sym_schema] = ACTIONS(194), - [anon_sym_mixin] = ACTIONS(194), - [anon_sym_protocol] = ACTIONS(194), - [anon_sym_rule] = ACTIONS(194), - [anon_sym_check] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(196), - [anon_sym_QMARK_DOT] = ACTIONS(196), - [anon_sym_not] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [sym_integer] = ACTIONS(194), - [sym_float] = ACTIONS(196), - [sym_true] = ACTIONS(194), - [sym_false] = ACTIONS(194), - [sym_none] = ACTIONS(194), - [sym_undefined] = ACTIONS(194), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(196), - [sym_string_start] = ACTIONS(196), - }, - [44] = { - [sym_schema_expr] = STATE(999), - [sym_lambda_expr] = STATE(999), - [sym_quant_expr] = STATE(999), - [sym_quant_op] = STATE(2976), - [sym_dotted_name] = STATE(2442), - [sym_expression] = STATE(1180), - [sym_as_expression] = STATE(997), - [sym_selector_expression] = STATE(1090), - [sym_primary_expression] = STATE(316), - [sym_paren_expression] = STATE(999), - [sym_braces_expression] = STATE(999), - [sym_not_operator] = STATE(997), - [sym_boolean_operator] = STATE(997), - [sym_long_expression] = STATE(997), - [sym_string_literal_expr] = STATE(999), - [sym_config_expr] = STATE(999), - [sym_binary_operator] = STATE(999), - [sym_unary_operator] = STATE(999), - [sym_sequence_operation] = STATE(997), - [sym_in_operation] = STATE(996), - [sym_not_in_operation] = STATE(996), - [sym_concatenation] = STATE(996), - [sym_comparison_operator] = STATE(997), - [sym_select_suffix] = STATE(999), - [sym_attribute] = STATE(999), - [sym_optional_attribute] = STATE(999), - [sym_optional_item] = STATE(999), - [sym_null_coalesce] = STATE(999), - [sym_subscript] = STATE(919), - [sym_call] = STATE(919), - [sym_list] = STATE(924), - [sym_dictionary] = STATE(924), - [sym_list_comprehension] = STATE(924), - [sym_dictionary_comprehension] = STATE(924), - [sym_conditional_expression] = STATE(997), - [sym_string] = STATE(999), - [aux_sym_check_statement_repeat1] = STATE(44), - [sym_identifier] = ACTIONS(198), - [anon_sym_import] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(203), - [anon_sym_assert] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_lambda] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(215), - [anon_sym_all] = ACTIONS(218), - [anon_sym_any] = ACTIONS(218), - [anon_sym_filter] = ACTIONS(218), - [anon_sym_map] = ACTIONS(218), - [anon_sym_type] = ACTIONS(201), - [anon_sym_schema] = ACTIONS(201), - [anon_sym_mixin] = ACTIONS(201), - [anon_sym_protocol] = ACTIONS(201), - [anon_sym_rule] = ACTIONS(201), - [anon_sym_check] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(221), - [anon_sym_QMARK_DOT] = ACTIONS(223), - [anon_sym_not] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(232), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_TILDE] = ACTIONS(229), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(238), - [sym_true] = ACTIONS(235), - [sym_false] = ACTIONS(235), - [sym_none] = ACTIONS(235), - [sym_undefined] = ACTIONS(235), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(221), - [sym_string_start] = ACTIONS(241), - }, - [45] = { - [sym__simple_statements] = STATE(1702), - [sym_import_statement] = STATE(3062), - [sym_assert_statement] = STATE(3062), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3062), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2492), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3062), - [sym_augmented_assignment] = STATE(3062), - [sym_unification] = STATE(3062), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [41] = { + [sym__simple_statements] = STATE(2954), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15483,54 +15011,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(244), - [sym__indent] = ACTIONS(246), + [sym__newline] = ACTIONS(186), + [sym__indent] = ACTIONS(188), [sym_string_start] = ACTIONS(55), }, - [46] = { - [sym__simple_statements] = STATE(3006), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [42] = { + [sym__simple_statements] = STATE(1761), + [sym_import_statement] = STATE(3096), + [sym_assert_statement] = STATE(3096), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3096), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2441), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3096), + [sym_augmented_assignment] = STATE(3096), + [sym_unification] = STATE(3096), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15558,54 +15085,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(248), - [sym__indent] = ACTIONS(250), + [sym__newline] = ACTIONS(190), + [sym__indent] = ACTIONS(192), [sym_string_start] = ACTIONS(55), }, - [47] = { - [sym__simple_statements] = STATE(3209), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [43] = { + [sym__simple_statements] = STATE(2972), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15633,54 +15159,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(252), - [sym__indent] = ACTIONS(254), + [sym__newline] = ACTIONS(194), + [sym__indent] = ACTIONS(196), [sym_string_start] = ACTIONS(55), }, - [48] = { - [sym__simple_statements] = STATE(3140), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [44] = { + [sym__simple_statements] = STATE(1757), + [sym_import_statement] = STATE(3096), + [sym_assert_statement] = STATE(3096), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3096), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2441), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3096), + [sym_augmented_assignment] = STATE(3096), + [sym_unification] = STATE(3096), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15708,54 +15233,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(256), - [sym__indent] = ACTIONS(258), + [sym__newline] = ACTIONS(198), + [sym__indent] = ACTIONS(200), [sym_string_start] = ACTIONS(55), }, - [49] = { - [sym__simple_statements] = STATE(1197), - [sym_import_statement] = STATE(3062), - [sym_assert_statement] = STATE(3062), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3062), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2492), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3062), - [sym_augmented_assignment] = STATE(3062), - [sym_unification] = STATE(3062), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [45] = { + [sym__simple_statements] = STATE(1613), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2402), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15783,129 +15307,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(260), - [sym__indent] = ACTIONS(262), + [sym__newline] = ACTIONS(202), + [sym__indent] = ACTIONS(204), [sym_string_start] = ACTIONS(55), }, - [50] = { - [sym_schema_expr] = STATE(914), - [sym_lambda_expr] = STATE(914), - [sym_quant_expr] = STATE(914), - [sym_quant_op] = STATE(3041), - [sym_dotted_name] = STATE(2448), - [sym_expression] = STATE(1175), - [sym_as_expression] = STATE(915), - [sym_selector_expression] = STATE(1144), - [sym_primary_expression] = STATE(311), - [sym_paren_expression] = STATE(914), - [sym_braces_expression] = STATE(914), - [sym_not_operator] = STATE(915), - [sym_boolean_operator] = STATE(915), - [sym_long_expression] = STATE(915), - [sym_string_literal_expr] = STATE(914), - [sym_config_expr] = STATE(914), - [sym_binary_operator] = STATE(914), - [sym_unary_operator] = STATE(914), - [sym_sequence_operation] = STATE(915), - [sym_in_operation] = STATE(918), - [sym_not_in_operation] = STATE(918), - [sym_concatenation] = STATE(918), - [sym_comparison_operator] = STATE(915), - [sym_select_suffix] = STATE(914), - [sym_attribute] = STATE(914), - [sym_optional_attribute] = STATE(914), - [sym_optional_item] = STATE(914), - [sym_null_coalesce] = STATE(914), - [sym_subscript] = STATE(928), - [sym_call] = STATE(928), - [sym_list] = STATE(930), - [sym_dictionary] = STATE(930), - [sym_list_comprehension] = STATE(930), - [sym_dictionary_comprehension] = STATE(930), - [sym_conditional_expression] = STATE(915), - [sym_string] = STATE(914), - [aux_sym_check_statement_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(221), - [sym_identifier] = ACTIONS(264), - [anon_sym_import] = ACTIONS(201), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_assert] = ACTIONS(201), - [anon_sym_if] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_lambda] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_all] = ACTIONS(218), - [anon_sym_any] = ACTIONS(218), - [anon_sym_filter] = ACTIONS(218), - [anon_sym_map] = ACTIONS(218), - [anon_sym_type] = ACTIONS(201), - [anon_sym_schema] = ACTIONS(201), - [anon_sym_mixin] = ACTIONS(201), - [anon_sym_protocol] = ACTIONS(201), - [anon_sym_rule] = ACTIONS(201), - [anon_sym_check] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(221), - [anon_sym_QMARK_DOT] = ACTIONS(282), - [anon_sym_not] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_TILDE] = ACTIONS(288), - [sym_integer] = ACTIONS(294), - [sym_float] = ACTIONS(297), - [sym_true] = ACTIONS(294), - [sym_false] = ACTIONS(294), - [sym_none] = ACTIONS(294), - [sym_undefined] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(300), - }, - [51] = { - [sym__simple_statements] = STATE(3089), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [46] = { + [sym__simple_statements] = STATE(1160), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2402), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -15933,54 +15381,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(303), - [sym__indent] = ACTIONS(305), + [sym__newline] = ACTIONS(206), + [sym__indent] = ACTIONS(208), [sym_string_start] = ACTIONS(55), }, - [52] = { - [sym__simple_statements] = STATE(3144), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [47] = { + [sym__simple_statements] = STATE(2919), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16008,54 +15455,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(307), - [sym__indent] = ACTIONS(309), + [sym__newline] = ACTIONS(210), + [sym__indent] = ACTIONS(212), [sym_string_start] = ACTIONS(55), }, - [53] = { - [sym__simple_statements] = STATE(3179), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [48] = { + [sym__simple_statements] = STATE(1615), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2402), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16083,129 +15529,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(311), - [sym__indent] = ACTIONS(313), + [sym__newline] = ACTIONS(214), + [sym__indent] = ACTIONS(216), [sym_string_start] = ACTIONS(55), }, - [54] = { - [sym__simple_statements] = STATE(3253), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [49] = { + [sym_schema_expr] = STATE(767), + [sym_lambda_expr] = STATE(767), + [sym_quant_expr] = STATE(767), + [sym_quant_op] = STATE(3014), + [sym_dotted_name] = STATE(2435), + [sym_expression] = STATE(1138), + [sym_as_expression] = STATE(760), + [sym_selector_expression] = STATE(1074), + [sym_primary_expression] = STATE(340), + [sym_paren_expression] = STATE(767), + [sym_braces_expression] = STATE(767), + [sym_not_operator] = STATE(760), + [sym_boolean_operator] = STATE(760), + [sym_long_expression] = STATE(760), + [sym_string_literal_expr] = STATE(767), + [sym_config_expr] = STATE(767), + [sym_binary_operator] = STATE(757), + [sym_unary_operator] = STATE(767), + [sym_sequence_operation] = STATE(760), + [sym_in_operation] = STATE(756), + [sym_not_in_operation] = STATE(756), + [sym_comparison_operator] = STATE(760), + [sym_select_suffix] = STATE(767), + [sym_attribute] = STATE(767), + [sym_optional_attribute] = STATE(767), + [sym_optional_item] = STATE(767), + [sym_null_coalesce] = STATE(767), + [sym_subscript] = STATE(757), + [sym_call] = STATE(757), + [sym_list] = STATE(755), + [sym_dictionary] = STATE(755), + [sym_list_comprehension] = STATE(755), + [sym_dictionary_comprehension] = STATE(755), + [sym_conditional_expression] = STATE(760), + [sym_string] = STATE(767), + [aux_sym_check_statement_repeat1] = STATE(68), + [ts_builtin_sym_end] = ACTIONS(218), + [sym_identifier] = ACTIONS(220), + [anon_sym_import] = ACTIONS(220), + [anon_sym_DOT] = ACTIONS(220), + [anon_sym_assert] = ACTIONS(220), + [anon_sym_if] = ACTIONS(220), + [anon_sym_LPAREN] = ACTIONS(218), + [anon_sym_LBRACK] = ACTIONS(218), + [anon_sym_lambda] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(218), + [anon_sym_all] = ACTIONS(220), + [anon_sym_any] = ACTIONS(220), + [anon_sym_filter] = ACTIONS(220), + [anon_sym_map] = ACTIONS(220), + [anon_sym_type] = ACTIONS(220), + [anon_sym_schema] = ACTIONS(220), + [anon_sym_mixin] = ACTIONS(220), + [anon_sym_protocol] = ACTIONS(220), + [anon_sym_rule] = ACTIONS(220), + [anon_sym_check] = ACTIONS(220), + [anon_sym_AT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(218), + [anon_sym_not] = ACTIONS(220), + [anon_sym_PLUS] = ACTIONS(218), + [anon_sym_DQUOTE] = ACTIONS(218), + [anon_sym_DASH] = ACTIONS(218), + [anon_sym_TILDE] = ACTIONS(218), + [sym_integer] = ACTIONS(220), + [sym_float] = ACTIONS(218), + [sym_true] = ACTIONS(220), + [sym_false] = ACTIONS(220), + [sym_none] = ACTIONS(220), + [sym_undefined] = ACTIONS(220), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(315), - [sym__indent] = ACTIONS(317), - [sym_string_start] = ACTIONS(55), + [sym_string_start] = ACTIONS(218), }, - [55] = { - [sym__simple_statements] = STATE(2998), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [50] = { + [sym__simple_statements] = STATE(1681), + [sym_import_statement] = STATE(3096), + [sym_assert_statement] = STATE(3096), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3096), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2441), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3096), + [sym_augmented_assignment] = STATE(3096), + [sym_unification] = STATE(3096), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16233,54 +15677,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(319), - [sym__indent] = ACTIONS(321), + [sym__newline] = ACTIONS(222), + [sym__indent] = ACTIONS(224), [sym_string_start] = ACTIONS(55), }, - [56] = { - [sym__simple_statements] = STATE(3151), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [51] = { + [sym__simple_statements] = STATE(2903), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16308,54 +15751,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(323), - [sym__indent] = ACTIONS(325), + [sym__newline] = ACTIONS(226), + [sym__indent] = ACTIONS(228), [sym_string_start] = ACTIONS(55), }, - [57] = { - [sym__simple_statements] = STATE(3037), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [52] = { + [sym__simple_statements] = STATE(2988), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16383,54 +15825,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(327), - [sym__indent] = ACTIONS(329), + [sym__newline] = ACTIONS(230), + [sym__indent] = ACTIONS(232), [sym_string_start] = ACTIONS(55), }, - [58] = { - [sym__simple_statements] = STATE(3226), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [53] = { + [sym__simple_statements] = STATE(1618), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2402), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16458,54 +15899,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(331), - [sym__indent] = ACTIONS(333), + [sym__newline] = ACTIONS(234), + [sym__indent] = ACTIONS(236), [sym_string_start] = ACTIONS(55), }, - [59] = { - [sym__simple_statements] = STATE(3001), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [54] = { + [sym__simple_statements] = STATE(3018), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16533,54 +15973,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(335), - [sym__indent] = ACTIONS(337), + [sym__newline] = ACTIONS(238), + [sym__indent] = ACTIONS(240), [sym_string_start] = ACTIONS(55), }, - [60] = { - [sym__simple_statements] = STATE(1431), - [sym_import_statement] = STATE(3062), - [sym_assert_statement] = STATE(3062), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3062), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2492), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3062), - [sym_augmented_assignment] = STATE(3062), - [sym_unification] = STATE(3062), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [55] = { + [sym__simple_statements] = STATE(1628), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2402), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16608,54 +16047,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(339), - [sym__indent] = ACTIONS(341), + [sym__newline] = ACTIONS(242), + [sym__indent] = ACTIONS(244), [sym_string_start] = ACTIONS(55), }, - [61] = { - [sym__simple_statements] = STATE(3145), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [56] = { + [sym__simple_statements] = STATE(2932), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16683,54 +16121,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(343), - [sym__indent] = ACTIONS(345), + [sym__newline] = ACTIONS(246), + [sym__indent] = ACTIONS(248), [sym_string_start] = ACTIONS(55), }, - [62] = { - [sym__simple_statements] = STATE(1654), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2508), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [57] = { + [sym__simple_statements] = STATE(1170), + [sym_import_statement] = STATE(3096), + [sym_assert_statement] = STATE(3096), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3096), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2441), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3096), + [sym_augmented_assignment] = STATE(3096), + [sym_unification] = STATE(3096), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16758,54 +16195,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(347), - [sym__indent] = ACTIONS(349), + [sym__newline] = ACTIONS(250), + [sym__indent] = ACTIONS(252), [sym_string_start] = ACTIONS(55), }, - [63] = { - [sym__simple_statements] = STATE(3035), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [58] = { + [sym__simple_statements] = STATE(1630), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2402), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16833,54 +16269,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(351), - [sym__indent] = ACTIONS(353), + [sym__newline] = ACTIONS(254), + [sym__indent] = ACTIONS(256), [sym_string_start] = ACTIONS(55), }, - [64] = { - [sym__simple_statements] = STATE(1652), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2508), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [59] = { + [sym__simple_statements] = STATE(1416), + [sym_import_statement] = STATE(3029), + [sym_assert_statement] = STATE(3029), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3029), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2402), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3029), + [sym_augmented_assignment] = STATE(3029), + [sym_unification] = STATE(3029), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16908,54 +16343,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(355), - [sym__indent] = ACTIONS(357), + [sym__newline] = ACTIONS(258), + [sym__indent] = ACTIONS(260), [sym_string_start] = ACTIONS(55), }, - [65] = { - [sym__simple_statements] = STATE(1664), - [sym_import_statement] = STATE(3062), - [sym_assert_statement] = STATE(3062), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3062), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2492), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3062), - [sym_augmented_assignment] = STATE(3062), - [sym_unification] = STATE(3062), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [60] = { + [sym__simple_statements] = STATE(1647), + [sym_import_statement] = STATE(3096), + [sym_assert_statement] = STATE(3096), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3096), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2441), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3096), + [sym_augmented_assignment] = STATE(3096), + [sym_unification] = STATE(3096), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -16983,204 +16417,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), + [sym__newline] = ACTIONS(262), + [sym__indent] = ACTIONS(264), [sym_string_start] = ACTIONS(55), }, - [66] = { - [sym__simple_statements] = STATE(1717), - [sym_import_statement] = STATE(3062), - [sym_assert_statement] = STATE(3062), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3062), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2492), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3062), - [sym_augmented_assignment] = STATE(3062), - [sym_unification] = STATE(3062), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [61] = { + [sym_schema_expr] = STATE(521), + [sym_lambda_expr] = STATE(521), + [sym_quant_expr] = STATE(521), + [sym_quant_op] = STATE(2930), + [sym_dotted_name] = STATE(2443), + [sym_expression] = STATE(1136), + [sym_as_expression] = STATE(520), + [sym_selector_expression] = STATE(1063), + [sym_primary_expression] = STATE(201), + [sym_paren_expression] = STATE(521), + [sym_braces_expression] = STATE(521), + [sym_not_operator] = STATE(520), + [sym_boolean_operator] = STATE(520), + [sym_long_expression] = STATE(520), + [sym_string_literal_expr] = STATE(521), + [sym_config_expr] = STATE(521), + [sym_binary_operator] = STATE(518), + [sym_unary_operator] = STATE(521), + [sym_sequence_operation] = STATE(520), + [sym_in_operation] = STATE(517), + [sym_not_in_operation] = STATE(517), + [sym_comparison_operator] = STATE(520), + [sym_select_suffix] = STATE(521), + [sym_attribute] = STATE(521), + [sym_optional_attribute] = STATE(521), + [sym_optional_item] = STATE(521), + [sym_null_coalesce] = STATE(521), + [sym_subscript] = STATE(518), + [sym_call] = STATE(518), + [sym_list] = STATE(516), + [sym_dictionary] = STATE(516), + [sym_list_comprehension] = STATE(516), + [sym_dictionary_comprehension] = STATE(516), + [sym_conditional_expression] = STATE(520), + [sym_string] = STATE(521), + [aux_sym_check_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(266), + [anon_sym_import] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(269), + [anon_sym_if] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_lambda] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_all] = ACTIONS(286), + [anon_sym_any] = ACTIONS(286), + [anon_sym_filter] = ACTIONS(286), + [anon_sym_map] = ACTIONS(286), + [anon_sym_type] = ACTIONS(269), + [anon_sym_schema] = ACTIONS(269), + [anon_sym_mixin] = ACTIONS(269), + [anon_sym_protocol] = ACTIONS(269), + [anon_sym_rule] = ACTIONS(269), + [anon_sym_check] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_QMARK_DOT] = ACTIONS(291), + [anon_sym_not] = ACTIONS(294), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_DQUOTE] = ACTIONS(300), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(297), + [sym_integer] = ACTIONS(303), + [sym_float] = ACTIONS(306), + [sym_true] = ACTIONS(303), + [sym_false] = ACTIONS(303), + [sym_none] = ACTIONS(303), + [sym_undefined] = ACTIONS(303), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), - [sym_string_start] = ACTIONS(55), + [sym__dedent] = ACTIONS(289), + [sym_string_start] = ACTIONS(309), }, - [67] = { - [sym__simple_statements] = STATE(3152), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_assert] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_lambda] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_QMARK_DOT] = ACTIONS(43), - [anon_sym_not] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(47), - [sym_integer] = ACTIONS(51), - [sym_float] = ACTIONS(53), - [sym_true] = ACTIONS(51), - [sym_false] = ACTIONS(51), - [sym_none] = ACTIONS(51), - [sym_undefined] = ACTIONS(51), + [62] = { + [sym_schema_expr] = STATE(521), + [sym_lambda_expr] = STATE(521), + [sym_quant_expr] = STATE(521), + [sym_quant_op] = STATE(2930), + [sym_dotted_name] = STATE(2443), + [sym_expression] = STATE(1136), + [sym_as_expression] = STATE(520), + [sym_selector_expression] = STATE(1063), + [sym_primary_expression] = STATE(201), + [sym_paren_expression] = STATE(521), + [sym_braces_expression] = STATE(521), + [sym_not_operator] = STATE(520), + [sym_boolean_operator] = STATE(520), + [sym_long_expression] = STATE(520), + [sym_string_literal_expr] = STATE(521), + [sym_config_expr] = STATE(521), + [sym_binary_operator] = STATE(518), + [sym_unary_operator] = STATE(521), + [sym_sequence_operation] = STATE(520), + [sym_in_operation] = STATE(517), + [sym_not_in_operation] = STATE(517), + [sym_comparison_operator] = STATE(520), + [sym_select_suffix] = STATE(521), + [sym_attribute] = STATE(521), + [sym_optional_attribute] = STATE(521), + [sym_optional_item] = STATE(521), + [sym_null_coalesce] = STATE(521), + [sym_subscript] = STATE(518), + [sym_call] = STATE(518), + [sym_list] = STATE(516), + [sym_dictionary] = STATE(516), + [sym_list_comprehension] = STATE(516), + [sym_dictionary_comprehension] = STATE(516), + [sym_conditional_expression] = STATE(520), + [sym_string] = STATE(521), + [aux_sym_check_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(220), + [anon_sym_import] = ACTIONS(220), + [anon_sym_DOT] = ACTIONS(220), + [anon_sym_assert] = ACTIONS(220), + [anon_sym_if] = ACTIONS(220), + [anon_sym_LPAREN] = ACTIONS(218), + [anon_sym_LBRACK] = ACTIONS(218), + [anon_sym_lambda] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(218), + [anon_sym_all] = ACTIONS(220), + [anon_sym_any] = ACTIONS(220), + [anon_sym_filter] = ACTIONS(220), + [anon_sym_map] = ACTIONS(220), + [anon_sym_type] = ACTIONS(220), + [anon_sym_schema] = ACTIONS(220), + [anon_sym_mixin] = ACTIONS(220), + [anon_sym_protocol] = ACTIONS(220), + [anon_sym_rule] = ACTIONS(220), + [anon_sym_check] = ACTIONS(220), + [anon_sym_AT] = ACTIONS(218), + [anon_sym_QMARK_DOT] = ACTIONS(218), + [anon_sym_not] = ACTIONS(220), + [anon_sym_PLUS] = ACTIONS(218), + [anon_sym_DQUOTE] = ACTIONS(218), + [anon_sym_DASH] = ACTIONS(218), + [anon_sym_TILDE] = ACTIONS(218), + [sym_integer] = ACTIONS(220), + [sym_float] = ACTIONS(218), + [sym_true] = ACTIONS(220), + [sym_false] = ACTIONS(220), + [sym_none] = ACTIONS(220), + [sym_undefined] = ACTIONS(220), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - [sym__indent] = ACTIONS(369), - [sym_string_start] = ACTIONS(55), + [sym__dedent] = ACTIONS(218), + [sym_string_start] = ACTIONS(218), }, - [68] = { - [sym__simple_statements] = STATE(3147), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [63] = { + [sym__simple_statements] = STATE(3010), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17208,54 +16639,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(371), - [sym__indent] = ACTIONS(373), + [sym__newline] = ACTIONS(312), + [sym__indent] = ACTIONS(314), [sym_string_start] = ACTIONS(55), }, - [69] = { - [sym__simple_statements] = STATE(3008), - [sym_import_statement] = STATE(3227), - [sym_assert_statement] = STATE(3227), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3227), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2425), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3227), - [sym_augmented_assignment] = STATE(3227), - [sym_unification] = STATE(3227), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [64] = { + [sym__simple_statements] = STATE(3140), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17283,54 +16713,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), + [sym__newline] = ACTIONS(316), + [sym__indent] = ACTIONS(318), [sym_string_start] = ACTIONS(55), }, - [70] = { - [sym__simple_statements] = STATE(1741), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2508), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [65] = { + [sym__simple_statements] = STATE(3202), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17358,54 +16787,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), + [sym__newline] = ACTIONS(320), + [sym__indent] = ACTIONS(322), [sym_string_start] = ACTIONS(55), }, - [71] = { - [sym__simple_statements] = STATE(1824), - [sym_import_statement] = STATE(3062), - [sym_assert_statement] = STATE(3062), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3062), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2492), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3062), - [sym_augmented_assignment] = STATE(3062), - [sym_unification] = STATE(3062), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [66] = { + [sym__simple_statements] = STATE(3084), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17433,54 +16861,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(383), - [sym__indent] = ACTIONS(385), + [sym__newline] = ACTIONS(324), + [sym__indent] = ACTIONS(326), [sym_string_start] = ACTIONS(55), }, - [72] = { - [sym__simple_statements] = STATE(1659), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2508), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [67] = { + [sym__simple_statements] = STATE(3022), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17508,54 +16935,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(387), - [sym__indent] = ACTIONS(389), + [sym__newline] = ACTIONS(328), + [sym__indent] = ACTIONS(330), [sym_string_start] = ACTIONS(55), }, - [73] = { - [sym__simple_statements] = STATE(1454), - [sym_import_statement] = STATE(3081), - [sym_assert_statement] = STATE(3081), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3081), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2508), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3081), - [sym_augmented_assignment] = STATE(3081), - [sym_unification] = STATE(3081), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [68] = { + [sym_schema_expr] = STATE(767), + [sym_lambda_expr] = STATE(767), + [sym_quant_expr] = STATE(767), + [sym_quant_op] = STATE(3014), + [sym_dotted_name] = STATE(2435), + [sym_expression] = STATE(1138), + [sym_as_expression] = STATE(760), + [sym_selector_expression] = STATE(1074), + [sym_primary_expression] = STATE(340), + [sym_paren_expression] = STATE(767), + [sym_braces_expression] = STATE(767), + [sym_not_operator] = STATE(760), + [sym_boolean_operator] = STATE(760), + [sym_long_expression] = STATE(760), + [sym_string_literal_expr] = STATE(767), + [sym_config_expr] = STATE(767), + [sym_binary_operator] = STATE(757), + [sym_unary_operator] = STATE(767), + [sym_sequence_operation] = STATE(760), + [sym_in_operation] = STATE(756), + [sym_not_in_operation] = STATE(756), + [sym_comparison_operator] = STATE(760), + [sym_select_suffix] = STATE(767), + [sym_attribute] = STATE(767), + [sym_optional_attribute] = STATE(767), + [sym_optional_item] = STATE(767), + [sym_null_coalesce] = STATE(767), + [sym_subscript] = STATE(757), + [sym_call] = STATE(757), + [sym_list] = STATE(755), + [sym_dictionary] = STATE(755), + [sym_list_comprehension] = STATE(755), + [sym_dictionary_comprehension] = STATE(755), + [sym_conditional_expression] = STATE(760), + [sym_string] = STATE(767), + [aux_sym_check_statement_repeat1] = STATE(68), + [ts_builtin_sym_end] = ACTIONS(289), + [sym_identifier] = ACTIONS(332), + [anon_sym_import] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(335), + [anon_sym_assert] = ACTIONS(269), + [anon_sym_if] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_lambda] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_all] = ACTIONS(286), + [anon_sym_any] = ACTIONS(286), + [anon_sym_filter] = ACTIONS(286), + [anon_sym_map] = ACTIONS(286), + [anon_sym_type] = ACTIONS(269), + [anon_sym_schema] = ACTIONS(269), + [anon_sym_mixin] = ACTIONS(269), + [anon_sym_protocol] = ACTIONS(269), + [anon_sym_rule] = ACTIONS(269), + [anon_sym_check] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_QMARK_DOT] = ACTIONS(350), + [anon_sym_not] = ACTIONS(353), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_TILDE] = ACTIONS(356), + [sym_integer] = ACTIONS(362), + [sym_float] = ACTIONS(365), + [sym_true] = ACTIONS(362), + [sym_false] = ACTIONS(362), + [sym_none] = ACTIONS(362), + [sym_undefined] = ACTIONS(362), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(368), + }, + [69] = { + [sym__simple_statements] = STATE(2983), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17583,129 +17083,423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(51), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(391), - [sym__indent] = ACTIONS(393), + [sym__newline] = ACTIONS(371), + [sym__indent] = ACTIONS(373), [sym_string_start] = ACTIONS(55), }, - [74] = { - [sym_schema_expr] = STATE(914), - [sym_lambda_expr] = STATE(914), - [sym_quant_expr] = STATE(914), - [sym_quant_op] = STATE(3041), - [sym_dotted_name] = STATE(2448), - [sym_expression] = STATE(1175), - [sym_as_expression] = STATE(915), - [sym_selector_expression] = STATE(1144), - [sym_primary_expression] = STATE(311), - [sym_paren_expression] = STATE(914), - [sym_braces_expression] = STATE(914), - [sym_not_operator] = STATE(915), - [sym_boolean_operator] = STATE(915), - [sym_long_expression] = STATE(915), - [sym_string_literal_expr] = STATE(914), - [sym_config_expr] = STATE(914), - [sym_binary_operator] = STATE(914), - [sym_unary_operator] = STATE(914), - [sym_sequence_operation] = STATE(915), - [sym_in_operation] = STATE(918), - [sym_not_in_operation] = STATE(918), - [sym_concatenation] = STATE(918), - [sym_comparison_operator] = STATE(915), - [sym_select_suffix] = STATE(914), - [sym_attribute] = STATE(914), - [sym_optional_attribute] = STATE(914), - [sym_optional_item] = STATE(914), - [sym_null_coalesce] = STATE(914), - [sym_subscript] = STATE(928), - [sym_call] = STATE(928), - [sym_list] = STATE(930), - [sym_dictionary] = STATE(930), - [sym_list_comprehension] = STATE(930), - [sym_dictionary_comprehension] = STATE(930), - [sym_conditional_expression] = STATE(915), - [sym_string] = STATE(914), - [aux_sym_check_statement_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(196), - [sym_identifier] = ACTIONS(194), - [anon_sym_import] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_assert] = ACTIONS(194), - [anon_sym_if] = ACTIONS(194), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_LBRACK] = ACTIONS(196), - [anon_sym_lambda] = ACTIONS(194), - [anon_sym_LBRACE] = ACTIONS(196), - [anon_sym_all] = ACTIONS(194), - [anon_sym_any] = ACTIONS(194), - [anon_sym_filter] = ACTIONS(194), - [anon_sym_map] = ACTIONS(194), - [anon_sym_type] = ACTIONS(194), - [anon_sym_schema] = ACTIONS(194), - [anon_sym_mixin] = ACTIONS(194), - [anon_sym_protocol] = ACTIONS(194), - [anon_sym_rule] = ACTIONS(194), - [anon_sym_check] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(196), - [anon_sym_QMARK_DOT] = ACTIONS(196), - [anon_sym_not] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [sym_integer] = ACTIONS(194), - [sym_float] = ACTIONS(196), - [sym_true] = ACTIONS(194), - [sym_false] = ACTIONS(194), - [sym_none] = ACTIONS(194), - [sym_undefined] = ACTIONS(194), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(196), - }, - [75] = { - [sym__simple_statements] = STATE(1687), - [sym_import_statement] = STATE(3062), - [sym_assert_statement] = STATE(3062), - [sym_schema_expr] = STATE(1879), - [sym_lambda_expr] = STATE(1879), - [sym_quant_expr] = STATE(1879), - [sym_quant_op] = STATE(3046), - [sym_type_alias_statement] = STATE(3062), - [sym_dotted_name] = STATE(2169), - [sym_expression] = STATE(2492), - [sym_as_expression] = STATE(1886), - [sym_selector_expression] = STATE(2230), - [sym_primary_expression] = STATE(1604), - [sym_paren_expression] = STATE(1879), - [sym_braces_expression] = STATE(1879), - [sym_not_operator] = STATE(1886), - [sym_boolean_operator] = STATE(1886), - [sym_long_expression] = STATE(1886), - [sym_string_literal_expr] = STATE(1879), - [sym_config_expr] = STATE(1879), - [sym_binary_operator] = STATE(1879), - [sym_unary_operator] = STATE(1879), - [sym_sequence_operation] = STATE(1886), - [sym_in_operation] = STATE(1929), - [sym_not_in_operation] = STATE(1929), - [sym_concatenation] = STATE(1929), - [sym_comparison_operator] = STATE(1886), - [sym_assignment] = STATE(3062), - [sym_augmented_assignment] = STATE(3062), - [sym_unification] = STATE(3062), - [sym_select_suffix] = STATE(1879), - [sym_attribute] = STATE(1879), - [sym_optional_attribute] = STATE(1879), - [sym_optional_item] = STATE(1879), - [sym_null_coalesce] = STATE(1879), - [sym_subscript] = STATE(1939), - [sym_call] = STATE(1939), - [sym_list] = STATE(1942), - [sym_dictionary] = STATE(1942), - [sym_list_comprehension] = STATE(1942), - [sym_dictionary_comprehension] = STATE(1942), - [sym_conditional_expression] = STATE(1886), - [sym_string] = STATE(1879), + [70] = { + [sym__simple_statements] = STATE(3160), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), + [sym_string_start] = ACTIONS(55), + }, + [71] = { + [sym__simple_statements] = STATE(2957), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(379), + [sym__indent] = ACTIONS(381), + [sym_string_start] = ACTIONS(55), + }, + [72] = { + [sym__simple_statements] = STATE(1760), + [sym_import_statement] = STATE(3096), + [sym_assert_statement] = STATE(3096), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3096), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2441), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3096), + [sym_augmented_assignment] = STATE(3096), + [sym_unification] = STATE(3096), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(383), + [sym__indent] = ACTIONS(385), + [sym_string_start] = ACTIONS(55), + }, + [73] = { + [sym__simple_statements] = STATE(3128), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(387), + [sym__indent] = ACTIONS(389), + [sym_string_start] = ACTIONS(55), + }, + [74] = { + [sym__simple_statements] = STATE(3153), + [sym_import_statement] = STATE(3183), + [sym_assert_statement] = STATE(3183), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3183), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2451), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3183), + [sym_augmented_assignment] = STATE(3183), + [sym_unification] = STATE(3183), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_lambda] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_QMARK_DOT] = ACTIONS(43), + [anon_sym_not] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(47), + [sym_integer] = ACTIONS(51), + [sym_float] = ACTIONS(53), + [sym_true] = ACTIONS(51), + [sym_false] = ACTIONS(51), + [sym_none] = ACTIONS(51), + [sym_undefined] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(391), + [sym__indent] = ACTIONS(393), + [sym_string_start] = ACTIONS(55), + }, + [75] = { + [sym__simple_statements] = STATE(1432), + [sym_import_statement] = STATE(3096), + [sym_assert_statement] = STATE(3096), + [sym_schema_expr] = STATE(1909), + [sym_lambda_expr] = STATE(1909), + [sym_quant_expr] = STATE(1909), + [sym_quant_op] = STATE(3095), + [sym_type_alias_statement] = STATE(3096), + [sym_dotted_name] = STATE(2124), + [sym_expression] = STATE(2441), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(2162), + [sym_primary_expression] = STATE(1454), + [sym_paren_expression] = STATE(1909), + [sym_braces_expression] = STATE(1909), + [sym_not_operator] = STATE(1906), + [sym_boolean_operator] = STATE(1906), + [sym_long_expression] = STATE(1906), + [sym_string_literal_expr] = STATE(1909), + [sym_config_expr] = STATE(1909), + [sym_binary_operator] = STATE(1896), + [sym_unary_operator] = STATE(1909), + [sym_sequence_operation] = STATE(1906), + [sym_in_operation] = STATE(1797), + [sym_not_in_operation] = STATE(1797), + [sym_comparison_operator] = STATE(1906), + [sym_assignment] = STATE(3096), + [sym_augmented_assignment] = STATE(3096), + [sym_unification] = STATE(3096), + [sym_select_suffix] = STATE(1909), + [sym_attribute] = STATE(1909), + [sym_optional_attribute] = STATE(1909), + [sym_optional_item] = STATE(1909), + [sym_null_coalesce] = STATE(1909), + [sym_subscript] = STATE(1896), + [sym_call] = STATE(1896), + [sym_list] = STATE(1877), + [sym_dictionary] = STATE(1877), + [sym_list_comprehension] = STATE(1877), + [sym_dictionary_comprehension] = STATE(1877), + [sym_conditional_expression] = STATE(1906), + [sym_string] = STATE(1909), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -17738,48 +17532,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [76] = { - [sym_schema_expr] = STATE(1350), - [sym_lambda_expr] = STATE(1350), - [sym_quant_expr] = STATE(1350), - [sym_quant_op] = STATE(3077), - [sym_dictionary_splat] = STATE(2705), - [sym_dotted_name] = STATE(2301), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1341), - [sym_selector_expression] = STATE(2153), - [sym_primary_expression] = STATE(1183), - [sym_paren_expression] = STATE(1721), - [sym_braces_expression] = STATE(1350), - [sym_not_operator] = STATE(1341), - [sym_boolean_operator] = STATE(1341), - [sym_long_expression] = STATE(1341), - [sym_string_literal_expr] = STATE(1350), - [sym_config_expr] = STATE(1350), - [sym_config_entries] = STATE(3180), - [sym_config_entry] = STATE(2716), - [sym_test] = STATE(2754), - [sym_if_entry] = STATE(2758), - [sym_binary_operator] = STATE(1350), - [sym_unary_operator] = STATE(1350), - [sym_sequence_operation] = STATE(1341), - [sym_in_operation] = STATE(1329), - [sym_not_in_operation] = STATE(1329), - [sym_concatenation] = STATE(1329), - [sym_comparison_operator] = STATE(1341), - [sym_select_suffix] = STATE(1350), - [sym_attribute] = STATE(1350), - [sym_optional_attribute] = STATE(1350), - [sym_optional_item] = STATE(1350), - [sym_null_coalesce] = STATE(1350), - [sym_subscript] = STATE(1420), - [sym_call] = STATE(1420), - [sym_list] = STATE(1327), - [sym_dictionary] = STATE(1327), - [sym_pair] = STATE(2615), - [sym_list_comprehension] = STATE(1327), - [sym_dictionary_comprehension] = STATE(1327), - [sym_conditional_expression] = STATE(1341), - [sym_string] = STATE(1721), + [sym_schema_expr] = STATE(1321), + [sym_lambda_expr] = STATE(1321), + [sym_quant_expr] = STATE(1321), + [sym_quant_op] = STATE(3107), + [sym_dictionary_splat] = STATE(2645), + [sym_dotted_name] = STATE(2235), + [sym_expression] = STATE(2244), + [sym_as_expression] = STATE(1308), + [sym_selector_expression] = STATE(2116), + [sym_primary_expression] = STATE(1195), + [sym_paren_expression] = STATE(1601), + [sym_braces_expression] = STATE(1321), + [sym_not_operator] = STATE(1308), + [sym_boolean_operator] = STATE(1308), + [sym_long_expression] = STATE(1308), + [sym_string_literal_expr] = STATE(1321), + [sym_config_expr] = STATE(1321), + [sym_config_entries] = STATE(3063), + [sym_config_entry] = STATE(2631), + [sym_test] = STATE(2789), + [sym_if_entry] = STATE(2793), + [sym_binary_operator] = STATE(1323), + [sym_unary_operator] = STATE(1321), + [sym_sequence_operation] = STATE(1308), + [sym_in_operation] = STATE(1346), + [sym_not_in_operation] = STATE(1346), + [sym_comparison_operator] = STATE(1308), + [sym_select_suffix] = STATE(1321), + [sym_attribute] = STATE(1321), + [sym_optional_attribute] = STATE(1321), + [sym_optional_item] = STATE(1321), + [sym_null_coalesce] = STATE(1321), + [sym_subscript] = STATE(1323), + [sym_call] = STATE(1323), + [sym_list] = STATE(1364), + [sym_dictionary] = STATE(1364), + [sym_pair] = STATE(2585), + [sym_list_comprehension] = STATE(1364), + [sym_dictionary_comprehension] = STATE(1364), + [sym_conditional_expression] = STATE(1308), + [sym_string] = STATE(1601), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), @@ -17812,48 +17605,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(431), }, [77] = { - [sym_schema_expr] = STATE(1350), - [sym_lambda_expr] = STATE(1350), - [sym_quant_expr] = STATE(1350), - [sym_quant_op] = STATE(3077), - [sym_dictionary_splat] = STATE(2687), - [sym_dotted_name] = STATE(2301), - [sym_expression] = STATE(2309), - [sym_as_expression] = STATE(1341), - [sym_selector_expression] = STATE(2153), - [sym_primary_expression] = STATE(1183), - [sym_paren_expression] = STATE(1721), - [sym_braces_expression] = STATE(1350), - [sym_not_operator] = STATE(1341), - [sym_boolean_operator] = STATE(1341), - [sym_long_expression] = STATE(1341), - [sym_string_literal_expr] = STATE(1350), - [sym_config_expr] = STATE(1350), - [sym_config_entries] = STATE(3222), - [sym_config_entry] = STATE(2716), - [sym_test] = STATE(2754), - [sym_if_entry] = STATE(2758), - [sym_binary_operator] = STATE(1350), - [sym_unary_operator] = STATE(1350), - [sym_sequence_operation] = STATE(1341), - [sym_in_operation] = STATE(1329), - [sym_not_in_operation] = STATE(1329), - [sym_concatenation] = STATE(1329), - [sym_comparison_operator] = STATE(1341), - [sym_select_suffix] = STATE(1350), - [sym_attribute] = STATE(1350), - [sym_optional_attribute] = STATE(1350), - [sym_optional_item] = STATE(1350), - [sym_null_coalesce] = STATE(1350), - [sym_subscript] = STATE(1420), - [sym_call] = STATE(1420), - [sym_list] = STATE(1327), - [sym_dictionary] = STATE(1327), - [sym_pair] = STATE(2646), - [sym_list_comprehension] = STATE(1327), - [sym_dictionary_comprehension] = STATE(1327), - [sym_conditional_expression] = STATE(1341), - [sym_string] = STATE(1721), + [sym_schema_expr] = STATE(1321), + [sym_lambda_expr] = STATE(1321), + [sym_quant_expr] = STATE(1321), + [sym_quant_op] = STATE(3107), + [sym_dictionary_splat] = STATE(2632), + [sym_dotted_name] = STATE(2235), + [sym_expression] = STATE(2242), + [sym_as_expression] = STATE(1308), + [sym_selector_expression] = STATE(2116), + [sym_primary_expression] = STATE(1195), + [sym_paren_expression] = STATE(1601), + [sym_braces_expression] = STATE(1321), + [sym_not_operator] = STATE(1308), + [sym_boolean_operator] = STATE(1308), + [sym_long_expression] = STATE(1308), + [sym_string_literal_expr] = STATE(1321), + [sym_config_expr] = STATE(1321), + [sym_config_entries] = STATE(3024), + [sym_config_entry] = STATE(2631), + [sym_test] = STATE(2789), + [sym_if_entry] = STATE(2793), + [sym_binary_operator] = STATE(1323), + [sym_unary_operator] = STATE(1321), + [sym_sequence_operation] = STATE(1308), + [sym_in_operation] = STATE(1346), + [sym_not_in_operation] = STATE(1346), + [sym_comparison_operator] = STATE(1308), + [sym_select_suffix] = STATE(1321), + [sym_attribute] = STATE(1321), + [sym_optional_attribute] = STATE(1321), + [sym_optional_item] = STATE(1321), + [sym_null_coalesce] = STATE(1321), + [sym_subscript] = STATE(1323), + [sym_call] = STATE(1323), + [sym_list] = STATE(1364), + [sym_dictionary] = STATE(1364), + [sym_pair] = STATE(2537), + [sym_list_comprehension] = STATE(1364), + [sym_dictionary_comprehension] = STATE(1364), + [sym_conditional_expression] = STATE(1308), + [sym_string] = STATE(1601), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), @@ -17886,57 +17678,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(431), }, [78] = { - [sym_schema_expr] = STATE(1350), - [sym_lambda_expr] = STATE(1350), - [sym_quant_expr] = STATE(1350), - [sym_quant_op] = STATE(3077), - [sym_dictionary_splat] = STATE(2726), - [sym_dotted_name] = STATE(2301), - [sym_expression] = STATE(2285), - [sym_as_expression] = STATE(1341), - [sym_selector_expression] = STATE(2153), - [sym_primary_expression] = STATE(1183), - [sym_paren_expression] = STATE(1721), - [sym_braces_expression] = STATE(1350), - [sym_not_operator] = STATE(1341), - [sym_boolean_operator] = STATE(1341), - [sym_long_expression] = STATE(1341), - [sym_string_literal_expr] = STATE(1350), - [sym_config_expr] = STATE(1350), - [sym_config_entries] = STATE(3232), - [sym_config_entry] = STATE(2716), - [sym_test] = STATE(2754), - [sym_if_entry] = STATE(2758), - [sym_binary_operator] = STATE(1350), - [sym_unary_operator] = STATE(1350), - [sym_sequence_operation] = STATE(1341), - [sym_in_operation] = STATE(1329), - [sym_not_in_operation] = STATE(1329), - [sym_concatenation] = STATE(1329), - [sym_comparison_operator] = STATE(1341), - [sym_select_suffix] = STATE(1350), - [sym_attribute] = STATE(1350), - [sym_optional_attribute] = STATE(1350), - [sym_optional_item] = STATE(1350), - [sym_null_coalesce] = STATE(1350), - [sym_subscript] = STATE(1420), - [sym_call] = STATE(1420), - [sym_list] = STATE(1327), - [sym_dictionary] = STATE(1327), - [sym_pair] = STATE(2647), - [sym_list_comprehension] = STATE(1327), - [sym_dictionary_comprehension] = STATE(1327), - [sym_conditional_expression] = STATE(1341), - [sym_string] = STATE(1721), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2649), + [sym_dotted_name] = STATE(2239), + [sym_expression] = STATE(2297), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1803), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_config_entries] = STATE(3179), + [sym_config_entry] = STATE(2631), + [sym_test] = STATE(2789), + [sym_if_entry] = STATE(2793), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2573), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1803), + [sym_identifier] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_if] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_lambda] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_STAR_STAR] = ACTIONS(417), + [anon_sym_QMARK_DOT] = ACTIONS(441), + [anon_sym_not] = ACTIONS(455), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DQUOTE] = ACTIONS(459), + [anon_sym_LF] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_TILDE] = ACTIONS(457), + [sym_integer] = ACTIONS(463), + [sym_float] = ACTIONS(463), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(467), + }, + [79] = { + [sym_schema_expr] = STATE(1321), + [sym_lambda_expr] = STATE(1321), + [sym_quant_expr] = STATE(1321), + [sym_quant_op] = STATE(3107), + [sym_dictionary_splat] = STATE(2623), + [sym_dotted_name] = STATE(2235), + [sym_expression] = STATE(2228), + [sym_as_expression] = STATE(1308), + [sym_selector_expression] = STATE(2116), + [sym_primary_expression] = STATE(1195), + [sym_paren_expression] = STATE(1601), + [sym_braces_expression] = STATE(1321), + [sym_not_operator] = STATE(1308), + [sym_boolean_operator] = STATE(1308), + [sym_long_expression] = STATE(1308), + [sym_string_literal_expr] = STATE(1321), + [sym_config_expr] = STATE(1321), + [sym_config_entries] = STATE(2909), + [sym_config_entry] = STATE(2631), + [sym_test] = STATE(2789), + [sym_if_entry] = STATE(2793), + [sym_binary_operator] = STATE(1323), + [sym_unary_operator] = STATE(1321), + [sym_sequence_operation] = STATE(1308), + [sym_in_operation] = STATE(1346), + [sym_not_in_operation] = STATE(1346), + [sym_comparison_operator] = STATE(1308), + [sym_select_suffix] = STATE(1321), + [sym_attribute] = STATE(1321), + [sym_optional_attribute] = STATE(1321), + [sym_optional_item] = STATE(1321), + [sym_null_coalesce] = STATE(1321), + [sym_subscript] = STATE(1323), + [sym_call] = STATE(1323), + [sym_list] = STATE(1364), + [sym_dictionary] = STATE(1364), + [sym_pair] = STATE(2541), + [sym_list_comprehension] = STATE(1364), + [sym_dictionary_comprehension] = STATE(1364), + [sym_conditional_expression] = STATE(1308), + [sym_string] = STATE(1601), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(439), + [anon_sym_COMMA] = ACTIONS(469), [anon_sym_LPAREN] = ACTIONS(407), [anon_sym_LBRACK] = ACTIONS(409), [anon_sym_lambda] = ACTIONS(411), [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(471), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), @@ -17946,7 +17810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(419), [anon_sym_PLUS] = ACTIONS(421), [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(443), + [anon_sym_LF] = ACTIONS(473), [anon_sym_DASH] = ACTIONS(421), [anon_sym_TILDE] = ACTIONS(421), [sym_integer] = ACTIONS(427), @@ -17959,58 +17823,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(5), [sym_string_start] = ACTIONS(431), }, - [79] = { - [sym_schema_expr] = STATE(1350), - [sym_lambda_expr] = STATE(1350), - [sym_quant_expr] = STATE(1350), - [sym_quant_op] = STATE(3077), - [sym_dictionary_splat] = STATE(2703), - [sym_dotted_name] = STATE(2301), - [sym_expression] = STATE(2289), - [sym_as_expression] = STATE(1341), - [sym_selector_expression] = STATE(2153), - [sym_primary_expression] = STATE(1183), - [sym_paren_expression] = STATE(1721), - [sym_braces_expression] = STATE(1350), - [sym_not_operator] = STATE(1341), - [sym_boolean_operator] = STATE(1341), - [sym_long_expression] = STATE(1341), - [sym_string_literal_expr] = STATE(1350), - [sym_config_expr] = STATE(1350), - [sym_config_entries] = STATE(3075), - [sym_config_entry] = STATE(2716), - [sym_test] = STATE(2754), - [sym_if_entry] = STATE(2758), - [sym_binary_operator] = STATE(1350), - [sym_unary_operator] = STATE(1350), - [sym_sequence_operation] = STATE(1341), - [sym_in_operation] = STATE(1329), - [sym_not_in_operation] = STATE(1329), - [sym_concatenation] = STATE(1329), - [sym_comparison_operator] = STATE(1341), - [sym_select_suffix] = STATE(1350), - [sym_attribute] = STATE(1350), - [sym_optional_attribute] = STATE(1350), - [sym_optional_item] = STATE(1350), - [sym_null_coalesce] = STATE(1350), - [sym_subscript] = STATE(1420), - [sym_call] = STATE(1420), - [sym_list] = STATE(1327), - [sym_dictionary] = STATE(1327), - [sym_pair] = STATE(2623), - [sym_list_comprehension] = STATE(1327), - [sym_dictionary_comprehension] = STATE(1327), - [sym_conditional_expression] = STATE(1341), - [sym_string] = STATE(1721), + [80] = { + [sym_schema_expr] = STATE(1321), + [sym_lambda_expr] = STATE(1321), + [sym_quant_expr] = STATE(1321), + [sym_quant_op] = STATE(3107), + [sym_dictionary_splat] = STATE(2634), + [sym_dotted_name] = STATE(2235), + [sym_expression] = STATE(2237), + [sym_as_expression] = STATE(1308), + [sym_selector_expression] = STATE(2116), + [sym_primary_expression] = STATE(1195), + [sym_paren_expression] = STATE(1601), + [sym_braces_expression] = STATE(1321), + [sym_not_operator] = STATE(1308), + [sym_boolean_operator] = STATE(1308), + [sym_long_expression] = STATE(1308), + [sym_string_literal_expr] = STATE(1321), + [sym_config_expr] = STATE(1321), + [sym_config_entries] = STATE(3035), + [sym_config_entry] = STATE(2631), + [sym_test] = STATE(2789), + [sym_if_entry] = STATE(2793), + [sym_binary_operator] = STATE(1323), + [sym_unary_operator] = STATE(1321), + [sym_sequence_operation] = STATE(1308), + [sym_in_operation] = STATE(1346), + [sym_not_in_operation] = STATE(1346), + [sym_comparison_operator] = STATE(1308), + [sym_select_suffix] = STATE(1321), + [sym_attribute] = STATE(1321), + [sym_optional_attribute] = STATE(1321), + [sym_optional_item] = STATE(1321), + [sym_null_coalesce] = STATE(1321), + [sym_subscript] = STATE(1323), + [sym_call] = STATE(1323), + [sym_list] = STATE(1364), + [sym_dictionary] = STATE(1364), + [sym_pair] = STATE(2543), + [sym_list_comprehension] = STATE(1364), + [sym_dictionary_comprehension] = STATE(1364), + [sym_conditional_expression] = STATE(1308), + [sym_string] = STATE(1601), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(445), + [anon_sym_COMMA] = ACTIONS(475), [anon_sym_LPAREN] = ACTIONS(407), [anon_sym_LBRACK] = ACTIONS(409), [anon_sym_lambda] = ACTIONS(411), [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_RBRACE] = ACTIONS(477), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), @@ -18020,7 +17883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(419), [anon_sym_PLUS] = ACTIONS(421), [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(449), + [anon_sym_LF] = ACTIONS(479), [anon_sym_DASH] = ACTIONS(421), [anon_sym_TILDE] = ACTIONS(421), [sym_integer] = ACTIONS(427), @@ -18033,132 +17896,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(5), [sym_string_start] = ACTIONS(431), }, - [80] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2726), - [sym_dotted_name] = STATE(2283), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1840), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_config_entries] = STATE(3232), - [sym_config_entry] = STATE(2716), - [sym_test] = STATE(2754), - [sym_if_entry] = STATE(2758), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2647), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1840), - [sym_identifier] = ACTIONS(451), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(417), - [anon_sym_QMARK_DOT] = ACTIONS(453), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(465), - [anon_sym_DQUOTE] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [sym_integer] = ACTIONS(469), - [sym_float] = ACTIONS(469), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(473), - }, [81] = { - [sym_schema_expr] = STATE(1350), - [sym_lambda_expr] = STATE(1350), - [sym_quant_expr] = STATE(1350), - [sym_quant_op] = STATE(3077), - [sym_dictionary_splat] = STATE(2694), - [sym_dotted_name] = STATE(2301), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1341), - [sym_selector_expression] = STATE(2153), - [sym_primary_expression] = STATE(1183), - [sym_paren_expression] = STATE(1721), - [sym_braces_expression] = STATE(1350), - [sym_not_operator] = STATE(1341), - [sym_boolean_operator] = STATE(1341), - [sym_long_expression] = STATE(1341), - [sym_string_literal_expr] = STATE(1350), - [sym_config_expr] = STATE(1350), - [sym_config_entries] = STATE(2966), - [sym_config_entry] = STATE(2716), - [sym_test] = STATE(2754), - [sym_if_entry] = STATE(2758), - [sym_binary_operator] = STATE(1350), - [sym_unary_operator] = STATE(1350), - [sym_sequence_operation] = STATE(1341), - [sym_in_operation] = STATE(1329), - [sym_not_in_operation] = STATE(1329), - [sym_concatenation] = STATE(1329), - [sym_comparison_operator] = STATE(1341), - [sym_select_suffix] = STATE(1350), - [sym_attribute] = STATE(1350), - [sym_optional_attribute] = STATE(1350), - [sym_optional_item] = STATE(1350), - [sym_null_coalesce] = STATE(1350), - [sym_subscript] = STATE(1420), - [sym_call] = STATE(1420), - [sym_list] = STATE(1327), - [sym_dictionary] = STATE(1327), - [sym_pair] = STATE(2610), - [sym_list_comprehension] = STATE(1327), - [sym_dictionary_comprehension] = STATE(1327), - [sym_conditional_expression] = STATE(1341), - [sym_string] = STATE(1721), + [sym_schema_expr] = STATE(1321), + [sym_lambda_expr] = STATE(1321), + [sym_quant_expr] = STATE(1321), + [sym_quant_op] = STATE(3107), + [sym_dictionary_splat] = STATE(2649), + [sym_dotted_name] = STATE(2235), + [sym_expression] = STATE(2238), + [sym_as_expression] = STATE(1308), + [sym_selector_expression] = STATE(2116), + [sym_primary_expression] = STATE(1195), + [sym_paren_expression] = STATE(1601), + [sym_braces_expression] = STATE(1321), + [sym_not_operator] = STATE(1308), + [sym_boolean_operator] = STATE(1308), + [sym_long_expression] = STATE(1308), + [sym_string_literal_expr] = STATE(1321), + [sym_config_expr] = STATE(1321), + [sym_config_entries] = STATE(3179), + [sym_config_entry] = STATE(2631), + [sym_test] = STATE(2789), + [sym_if_entry] = STATE(2793), + [sym_binary_operator] = STATE(1323), + [sym_unary_operator] = STATE(1321), + [sym_sequence_operation] = STATE(1308), + [sym_in_operation] = STATE(1346), + [sym_not_in_operation] = STATE(1346), + [sym_comparison_operator] = STATE(1308), + [sym_select_suffix] = STATE(1321), + [sym_attribute] = STATE(1321), + [sym_optional_attribute] = STATE(1321), + [sym_optional_item] = STATE(1321), + [sym_null_coalesce] = STATE(1321), + [sym_subscript] = STATE(1323), + [sym_call] = STATE(1323), + [sym_list] = STATE(1364), + [sym_dictionary] = STATE(1364), + [sym_pair] = STATE(2573), + [sym_list_comprehension] = STATE(1364), + [sym_dictionary_comprehension] = STATE(1364), + [sym_conditional_expression] = STATE(1308), + [sym_string] = STATE(1601), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(407), [anon_sym_LBRACK] = ACTIONS(409), [anon_sym_lambda] = ACTIONS(411), [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(453), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), @@ -18168,7 +17956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not] = ACTIONS(419), [anon_sym_PLUS] = ACTIONS(421), [anon_sym_DQUOTE] = ACTIONS(423), - [anon_sym_LF] = ACTIONS(479), + [anon_sym_LF] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(421), [anon_sym_TILDE] = ACTIONS(421), [sym_integer] = ACTIONS(427), @@ -18182,48 +17970,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(431), }, [82] = { - [sym_schema_expr] = STATE(1350), - [sym_lambda_expr] = STATE(1350), - [sym_quant_expr] = STATE(1350), - [sym_quant_op] = STATE(3077), - [sym_dictionary_splat] = STATE(2700), - [sym_dotted_name] = STATE(2301), - [sym_expression] = STATE(2286), - [sym_as_expression] = STATE(1341), - [sym_selector_expression] = STATE(2153), - [sym_primary_expression] = STATE(1183), - [sym_paren_expression] = STATE(1721), - [sym_braces_expression] = STATE(1350), - [sym_not_operator] = STATE(1341), - [sym_boolean_operator] = STATE(1341), - [sym_long_expression] = STATE(1341), - [sym_string_literal_expr] = STATE(1350), - [sym_config_expr] = STATE(1350), - [sym_config_entries] = STATE(3252), - [sym_config_entry] = STATE(2716), - [sym_test] = STATE(2754), - [sym_if_entry] = STATE(2758), - [sym_binary_operator] = STATE(1350), - [sym_unary_operator] = STATE(1350), - [sym_sequence_operation] = STATE(1341), - [sym_in_operation] = STATE(1329), - [sym_not_in_operation] = STATE(1329), - [sym_concatenation] = STATE(1329), - [sym_comparison_operator] = STATE(1341), - [sym_select_suffix] = STATE(1350), - [sym_attribute] = STATE(1350), - [sym_optional_attribute] = STATE(1350), - [sym_optional_item] = STATE(1350), - [sym_null_coalesce] = STATE(1350), - [sym_subscript] = STATE(1420), - [sym_call] = STATE(1420), - [sym_list] = STATE(1327), - [sym_dictionary] = STATE(1327), - [sym_pair] = STATE(2624), - [sym_list_comprehension] = STATE(1327), - [sym_dictionary_comprehension] = STATE(1327), - [sym_conditional_expression] = STATE(1341), - [sym_string] = STATE(1721), + [sym_schema_expr] = STATE(1321), + [sym_lambda_expr] = STATE(1321), + [sym_quant_expr] = STATE(1321), + [sym_quant_op] = STATE(3107), + [sym_dictionary_splat] = STATE(2629), + [sym_dotted_name] = STATE(2235), + [sym_expression] = STATE(2248), + [sym_as_expression] = STATE(1308), + [sym_selector_expression] = STATE(2116), + [sym_primary_expression] = STATE(1195), + [sym_paren_expression] = STATE(1601), + [sym_braces_expression] = STATE(1321), + [sym_not_operator] = STATE(1308), + [sym_boolean_operator] = STATE(1308), + [sym_long_expression] = STATE(1308), + [sym_string_literal_expr] = STATE(1321), + [sym_config_expr] = STATE(1321), + [sym_config_entries] = STATE(2974), + [sym_config_entry] = STATE(2631), + [sym_test] = STATE(2789), + [sym_if_entry] = STATE(2793), + [sym_binary_operator] = STATE(1323), + [sym_unary_operator] = STATE(1321), + [sym_sequence_operation] = STATE(1308), + [sym_in_operation] = STATE(1346), + [sym_not_in_operation] = STATE(1346), + [sym_comparison_operator] = STATE(1308), + [sym_select_suffix] = STATE(1321), + [sym_attribute] = STATE(1321), + [sym_optional_attribute] = STATE(1321), + [sym_optional_item] = STATE(1321), + [sym_null_coalesce] = STATE(1321), + [sym_subscript] = STATE(1323), + [sym_call] = STATE(1323), + [sym_list] = STATE(1364), + [sym_dictionary] = STATE(1364), + [sym_pair] = STATE(2560), + [sym_list_comprehension] = STATE(1364), + [sym_dictionary_comprehension] = STATE(1364), + [sym_conditional_expression] = STATE(1308), + [sym_string] = STATE(1601), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), @@ -18256,48 +18043,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(431), }, [83] = { - [sym_schema_expr] = STATE(1350), - [sym_lambda_expr] = STATE(1350), - [sym_quant_expr] = STATE(1350), - [sym_quant_op] = STATE(3077), - [sym_dictionary_splat] = STATE(2725), - [sym_dotted_name] = STATE(2301), - [sym_expression] = STATE(2299), - [sym_as_expression] = STATE(1341), - [sym_selector_expression] = STATE(2153), - [sym_primary_expression] = STATE(1183), - [sym_paren_expression] = STATE(1721), - [sym_braces_expression] = STATE(1350), - [sym_not_operator] = STATE(1341), - [sym_boolean_operator] = STATE(1341), - [sym_long_expression] = STATE(1341), - [sym_string_literal_expr] = STATE(1350), - [sym_config_expr] = STATE(1350), - [sym_config_entries] = STATE(3116), - [sym_config_entry] = STATE(2716), - [sym_test] = STATE(2754), - [sym_if_entry] = STATE(2758), - [sym_binary_operator] = STATE(1350), - [sym_unary_operator] = STATE(1350), - [sym_sequence_operation] = STATE(1341), - [sym_in_operation] = STATE(1329), - [sym_not_in_operation] = STATE(1329), - [sym_concatenation] = STATE(1329), - [sym_comparison_operator] = STATE(1341), - [sym_select_suffix] = STATE(1350), - [sym_attribute] = STATE(1350), - [sym_optional_attribute] = STATE(1350), - [sym_optional_item] = STATE(1350), - [sym_null_coalesce] = STATE(1350), - [sym_subscript] = STATE(1420), - [sym_call] = STATE(1420), - [sym_list] = STATE(1327), - [sym_dictionary] = STATE(1327), - [sym_pair] = STATE(2598), - [sym_list_comprehension] = STATE(1327), - [sym_dictionary_comprehension] = STATE(1327), - [sym_conditional_expression] = STATE(1341), - [sym_string] = STATE(1721), + [sym_schema_expr] = STATE(1321), + [sym_lambda_expr] = STATE(1321), + [sym_quant_expr] = STATE(1321), + [sym_quant_op] = STATE(3107), + [sym_dictionary_splat] = STATE(2626), + [sym_dotted_name] = STATE(2235), + [sym_expression] = STATE(2236), + [sym_as_expression] = STATE(1308), + [sym_selector_expression] = STATE(2116), + [sym_primary_expression] = STATE(1195), + [sym_paren_expression] = STATE(1601), + [sym_braces_expression] = STATE(1321), + [sym_not_operator] = STATE(1308), + [sym_boolean_operator] = STATE(1308), + [sym_long_expression] = STATE(1308), + [sym_string_literal_expr] = STATE(1321), + [sym_config_expr] = STATE(1321), + [sym_config_entries] = STATE(2951), + [sym_config_entry] = STATE(2631), + [sym_test] = STATE(2789), + [sym_if_entry] = STATE(2793), + [sym_binary_operator] = STATE(1323), + [sym_unary_operator] = STATE(1321), + [sym_sequence_operation] = STATE(1308), + [sym_in_operation] = STATE(1346), + [sym_not_in_operation] = STATE(1346), + [sym_comparison_operator] = STATE(1308), + [sym_select_suffix] = STATE(1321), + [sym_attribute] = STATE(1321), + [sym_optional_attribute] = STATE(1321), + [sym_optional_item] = STATE(1321), + [sym_null_coalesce] = STATE(1321), + [sym_subscript] = STATE(1323), + [sym_call] = STATE(1323), + [sym_list] = STATE(1364), + [sym_dictionary] = STATE(1364), + [sym_pair] = STATE(2539), + [sym_list_comprehension] = STATE(1364), + [sym_dictionary_comprehension] = STATE(1364), + [sym_conditional_expression] = STATE(1308), + [sym_string] = STATE(1601), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), @@ -18330,48 +18116,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(431), }, [84] = { - [sym_schema_expr] = STATE(1350), - [sym_lambda_expr] = STATE(1350), - [sym_quant_expr] = STATE(1350), - [sym_quant_op] = STATE(3077), - [sym_dictionary_splat] = STATE(2695), - [sym_dotted_name] = STATE(2301), - [sym_expression] = STATE(2300), - [sym_as_expression] = STATE(1341), - [sym_selector_expression] = STATE(2153), - [sym_primary_expression] = STATE(1183), - [sym_paren_expression] = STATE(1721), - [sym_braces_expression] = STATE(1350), - [sym_not_operator] = STATE(1341), - [sym_boolean_operator] = STATE(1341), - [sym_long_expression] = STATE(1341), - [sym_string_literal_expr] = STATE(1350), - [sym_config_expr] = STATE(1350), - [sym_config_entries] = STATE(3198), - [sym_config_entry] = STATE(2716), - [sym_test] = STATE(2754), - [sym_if_entry] = STATE(2758), - [sym_binary_operator] = STATE(1350), - [sym_unary_operator] = STATE(1350), - [sym_sequence_operation] = STATE(1341), - [sym_in_operation] = STATE(1329), - [sym_not_in_operation] = STATE(1329), - [sym_concatenation] = STATE(1329), - [sym_comparison_operator] = STATE(1341), - [sym_select_suffix] = STATE(1350), - [sym_attribute] = STATE(1350), - [sym_optional_attribute] = STATE(1350), - [sym_optional_item] = STATE(1350), - [sym_null_coalesce] = STATE(1350), - [sym_subscript] = STATE(1420), - [sym_call] = STATE(1420), - [sym_list] = STATE(1327), - [sym_dictionary] = STATE(1327), - [sym_pair] = STATE(2608), - [sym_list_comprehension] = STATE(1327), - [sym_dictionary_comprehension] = STATE(1327), - [sym_conditional_expression] = STATE(1341), - [sym_string] = STATE(1721), + [sym_schema_expr] = STATE(1321), + [sym_lambda_expr] = STATE(1321), + [sym_quant_expr] = STATE(1321), + [sym_quant_op] = STATE(3107), + [sym_dictionary_splat] = STATE(2658), + [sym_dotted_name] = STATE(2235), + [sym_expression] = STATE(2250), + [sym_as_expression] = STATE(1308), + [sym_selector_expression] = STATE(2116), + [sym_primary_expression] = STATE(1195), + [sym_paren_expression] = STATE(1601), + [sym_braces_expression] = STATE(1321), + [sym_not_operator] = STATE(1308), + [sym_boolean_operator] = STATE(1308), + [sym_long_expression] = STATE(1308), + [sym_string_literal_expr] = STATE(1321), + [sym_config_expr] = STATE(1321), + [sym_config_entries] = STATE(3164), + [sym_config_entry] = STATE(2631), + [sym_test] = STATE(2789), + [sym_if_entry] = STATE(2793), + [sym_binary_operator] = STATE(1323), + [sym_unary_operator] = STATE(1321), + [sym_sequence_operation] = STATE(1308), + [sym_in_operation] = STATE(1346), + [sym_not_in_operation] = STATE(1346), + [sym_comparison_operator] = STATE(1308), + [sym_select_suffix] = STATE(1321), + [sym_attribute] = STATE(1321), + [sym_optional_attribute] = STATE(1321), + [sym_optional_item] = STATE(1321), + [sym_null_coalesce] = STATE(1321), + [sym_subscript] = STATE(1323), + [sym_call] = STATE(1323), + [sym_list] = STATE(1364), + [sym_dictionary] = STATE(1364), + [sym_pair] = STATE(2583), + [sym_list_comprehension] = STATE(1364), + [sym_dictionary_comprehension] = STATE(1364), + [sym_conditional_expression] = STATE(1308), + [sym_string] = STATE(1601), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), @@ -18404,48 +18189,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(431), }, [85] = { - [sym_schema_expr] = STATE(1350), - [sym_lambda_expr] = STATE(1350), - [sym_quant_expr] = STATE(1350), - [sym_quant_op] = STATE(3077), - [sym_dictionary_splat] = STATE(2690), - [sym_dotted_name] = STATE(2301), - [sym_expression] = STATE(2306), - [sym_as_expression] = STATE(1341), - [sym_selector_expression] = STATE(2153), - [sym_primary_expression] = STATE(1183), - [sym_paren_expression] = STATE(1721), - [sym_braces_expression] = STATE(1350), - [sym_not_operator] = STATE(1341), - [sym_boolean_operator] = STATE(1341), - [sym_long_expression] = STATE(1341), - [sym_string_literal_expr] = STATE(1350), - [sym_config_expr] = STATE(1350), - [sym_config_entries] = STATE(3017), - [sym_config_entry] = STATE(2716), - [sym_test] = STATE(2754), - [sym_if_entry] = STATE(2758), - [sym_binary_operator] = STATE(1350), - [sym_unary_operator] = STATE(1350), - [sym_sequence_operation] = STATE(1341), - [sym_in_operation] = STATE(1329), - [sym_not_in_operation] = STATE(1329), - [sym_concatenation] = STATE(1329), - [sym_comparison_operator] = STATE(1341), - [sym_select_suffix] = STATE(1350), - [sym_attribute] = STATE(1350), - [sym_optional_attribute] = STATE(1350), - [sym_optional_item] = STATE(1350), - [sym_null_coalesce] = STATE(1350), - [sym_subscript] = STATE(1420), - [sym_call] = STATE(1420), - [sym_list] = STATE(1327), - [sym_dictionary] = STATE(1327), - [sym_pair] = STATE(2602), - [sym_list_comprehension] = STATE(1327), - [sym_dictionary_comprehension] = STATE(1327), - [sym_conditional_expression] = STATE(1341), - [sym_string] = STATE(1721), + [sym_schema_expr] = STATE(1321), + [sym_lambda_expr] = STATE(1321), + [sym_quant_expr] = STATE(1321), + [sym_quant_op] = STATE(3107), + [sym_dictionary_splat] = STATE(2633), + [sym_dotted_name] = STATE(2235), + [sym_expression] = STATE(2246), + [sym_as_expression] = STATE(1308), + [sym_selector_expression] = STATE(2116), + [sym_primary_expression] = STATE(1195), + [sym_paren_expression] = STATE(1601), + [sym_braces_expression] = STATE(1321), + [sym_not_operator] = STATE(1308), + [sym_boolean_operator] = STATE(1308), + [sym_long_expression] = STATE(1308), + [sym_string_literal_expr] = STATE(1321), + [sym_config_expr] = STATE(1321), + [sym_config_entries] = STATE(3023), + [sym_config_entry] = STATE(2631), + [sym_test] = STATE(2789), + [sym_if_entry] = STATE(2793), + [sym_binary_operator] = STATE(1323), + [sym_unary_operator] = STATE(1321), + [sym_sequence_operation] = STATE(1308), + [sym_in_operation] = STATE(1346), + [sym_not_in_operation] = STATE(1346), + [sym_comparison_operator] = STATE(1308), + [sym_select_suffix] = STATE(1321), + [sym_attribute] = STATE(1321), + [sym_optional_attribute] = STATE(1321), + [sym_optional_item] = STATE(1321), + [sym_null_coalesce] = STATE(1321), + [sym_subscript] = STATE(1323), + [sym_call] = STATE(1323), + [sym_list] = STATE(1364), + [sym_dictionary] = STATE(1364), + [sym_pair] = STATE(2553), + [sym_list_comprehension] = STATE(1364), + [sym_dictionary_comprehension] = STATE(1364), + [sym_conditional_expression] = STATE(1308), + [sym_string] = STATE(1601), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), @@ -18478,45 +18262,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(431), }, [86] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2266), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_basic_type] = STATE(3149), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3150), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), + [sym_schema_expr] = STATE(1702), + [sym_lambda_expr] = STATE(1702), + [sym_quant_expr] = STATE(1702), + [sym_quant_op] = STATE(3110), + [sym_list_splat] = STATE(2772), + [sym_dotted_name] = STATE(2439), + [sym_expression] = STATE(2216), + [sym_as_expression] = STATE(1705), + [sym_selector_expression] = STATE(2161), + [sym_primary_expression] = STATE(1441), + [sym_paren_expression] = STATE(1702), + [sym_braces_expression] = STATE(1702), + [sym_not_operator] = STATE(1705), + [sym_boolean_operator] = STATE(1705), + [sym_long_expression] = STATE(1705), + [sym_string_literal_expr] = STATE(1702), + [sym_config_expr] = STATE(1702), + [sym_binary_operator] = STATE(1707), + [sym_unary_operator] = STATE(1702), + [sym_sequence_operation] = STATE(1705), + [sym_in_operation] = STATE(1710), + [sym_not_in_operation] = STATE(1710), + [sym_comparison_operator] = STATE(1705), + [sym_select_suffix] = STATE(1702), + [sym_attribute] = STATE(1702), + [sym_optional_attribute] = STATE(1702), + [sym_optional_item] = STATE(1702), + [sym_null_coalesce] = STATE(1702), + [sym_subscript] = STATE(1707), + [sym_call] = STATE(1707), + [sym_basic_type] = STATE(3043), + [sym_list] = STATE(1711), + [sym_dictionary] = STATE(1711), + [sym_list_comprehension] = STATE(1711), + [sym_dictionary_comprehension] = STATE(1711), + [sym__collection_elements] = STATE(3042), + [sym_conditional_expression] = STATE(1705), + [sym_string] = STATE(1702), [sym_identifier] = ACTIONS(505), [anon_sym_DOT] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), @@ -18551,45 +18334,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(539), }, [87] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2266), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_basic_type] = STATE(3210), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3150), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), + [sym_schema_expr] = STATE(1702), + [sym_lambda_expr] = STATE(1702), + [sym_quant_expr] = STATE(1702), + [sym_quant_op] = STATE(3110), + [sym_list_splat] = STATE(2772), + [sym_dotted_name] = STATE(2439), + [sym_expression] = STATE(2216), + [sym_as_expression] = STATE(1705), + [sym_selector_expression] = STATE(2161), + [sym_primary_expression] = STATE(1441), + [sym_paren_expression] = STATE(1702), + [sym_braces_expression] = STATE(1702), + [sym_not_operator] = STATE(1705), + [sym_boolean_operator] = STATE(1705), + [sym_long_expression] = STATE(1705), + [sym_string_literal_expr] = STATE(1702), + [sym_config_expr] = STATE(1702), + [sym_binary_operator] = STATE(1707), + [sym_unary_operator] = STATE(1702), + [sym_sequence_operation] = STATE(1705), + [sym_in_operation] = STATE(1710), + [sym_not_in_operation] = STATE(1710), + [sym_comparison_operator] = STATE(1705), + [sym_select_suffix] = STATE(1702), + [sym_attribute] = STATE(1702), + [sym_optional_attribute] = STATE(1702), + [sym_optional_item] = STATE(1702), + [sym_null_coalesce] = STATE(1702), + [sym_subscript] = STATE(1707), + [sym_call] = STATE(1707), + [sym_basic_type] = STATE(3141), + [sym_list] = STATE(1711), + [sym_dictionary] = STATE(1711), + [sym_list_comprehension] = STATE(1711), + [sym_dictionary_comprehension] = STATE(1711), + [sym__collection_elements] = STATE(3042), + [sym_conditional_expression] = STATE(1705), + [sym_string] = STATE(1702), [sym_identifier] = ACTIONS(541), [anon_sym_DOT] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), @@ -18624,50 +18406,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(539), }, [88] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(90), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(110), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), [anon_sym_RBRACE] = ACTIONS(553), [anon_sym_all] = ACTIONS(27), @@ -18676,3737 +18457,1834 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [89] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(111), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2691), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2297), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2553), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(565), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_RBRACE] = ACTIONS(567), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), + [anon_sym_STAR_STAR] = ACTIONS(569), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [90] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(111), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(110), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(571), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [91] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2802), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2624), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2748), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2297), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2573), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(573), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(575), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(569), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [92] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(93), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(88), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(577), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [93] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(111), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(110), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(577), + [anon_sym_RBRACE] = ACTIONS(579), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [94] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2830), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2647), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2667), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2297), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2541), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(581), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(583), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(569), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [95] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2728), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2608), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2783), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2297), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2560), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(587), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(569), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [96] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(111), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2669), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2297), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2585), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(589), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(591), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), + [anon_sym_STAR_STAR] = ACTIONS(569), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [97] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(111), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2761), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2297), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2583), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(593), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_RBRACE] = ACTIONS(595), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), + [anon_sym_STAR_STAR] = ACTIONS(569), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [98] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2775), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2615), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2672), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2297), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2539), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(597), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(599), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(569), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [99] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(111), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(110), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(601), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [100] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(97), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(93), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(603), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [101] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(102), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(110), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(605), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [102] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(111), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(110), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(607), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [103] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2860), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2623), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(109), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(609), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [104] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(99), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(90), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(611), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [105] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(96), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(101), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(613), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [106] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2730), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2646), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(111), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(615), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [107] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(112), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(99), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(617), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [108] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(89), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(102), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(619), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [109] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2827), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2598), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(110), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), [anon_sym_RBRACE] = ACTIONS(621), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [110] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(111), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_lambda] = ACTIONS(635), + [anon_sym_LBRACE] = ACTIONS(638), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_all] = ACTIONS(643), + [anon_sym_any] = ACTIONS(643), + [anon_sym_filter] = ACTIONS(643), + [anon_sym_map] = ACTIONS(643), + [anon_sym_STAR_STAR] = ACTIONS(646), + [anon_sym_QMARK_DOT] = ACTIONS(649), + [anon_sym_not] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [sym_integer] = ACTIONS(661), + [sym_float] = ACTIONS(664), + [sym_true] = ACTIONS(661), + [sym_false] = ACTIONS(661), + [sym_none] = ACTIONS(661), + [sym_undefined] = ACTIONS(661), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(667), + }, + [111] = { + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(110), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(670), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [111] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(634), - [anon_sym_lambda] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(643), - [anon_sym_all] = ACTIONS(645), - [anon_sym_any] = ACTIONS(645), - [anon_sym_filter] = ACTIONS(645), - [anon_sym_map] = ACTIONS(645), - [anon_sym_STAR_STAR] = ACTIONS(648), - [anon_sym_QMARK_DOT] = ACTIONS(651), - [anon_sym_not] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_DQUOTE] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [sym_integer] = ACTIONS(663), - [sym_float] = ACTIONS(666), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_none] = ACTIONS(663), - [sym_undefined] = ACTIONS(663), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(669), + [sym_string_start] = ACTIONS(467), }, [112] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(111), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2725), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2297), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2537), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(674), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(555), + [anon_sym_STAR_STAR] = ACTIONS(569), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [113] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2055), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2341), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2055), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [aux_sym_dict_expr_repeat1] = STATE(110), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(114), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_RBRACE] = ACTIONS(676), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [114] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2803), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2610), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2001), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2304), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2001), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), + [aux_sym_dict_expr_repeat1] = STATE(110), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), [anon_sym_RBRACE] = ACTIONS(678), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(555), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, [115] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2869), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2602), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), + [sym_schema_expr] = STATE(1238), + [sym_lambda_expr] = STATE(1238), + [sym_quant_expr] = STATE(1238), + [sym_quant_op] = STATE(3143), + [sym_dictionary_splat] = STATE(2712), + [sym_dotted_name] = STATE(2457), + [sym_expression] = STATE(2297), + [sym_as_expression] = STATE(1239), + [sym_selector_expression] = STATE(2154), + [sym_primary_expression] = STATE(1360), + [sym_paren_expression] = STATE(1238), + [sym_braces_expression] = STATE(1238), + [sym_not_operator] = STATE(1239), + [sym_boolean_operator] = STATE(1239), + [sym_long_expression] = STATE(1239), + [sym_string_literal_expr] = STATE(1238), + [sym_config_expr] = STATE(1238), + [sym_binary_operator] = STATE(1253), + [sym_unary_operator] = STATE(1238), + [sym_sequence_operation] = STATE(1239), + [sym_in_operation] = STATE(1258), + [sym_not_in_operation] = STATE(1258), + [sym_comparison_operator] = STATE(1239), + [sym_select_suffix] = STATE(1238), + [sym_attribute] = STATE(1238), + [sym_optional_attribute] = STATE(1238), + [sym_optional_item] = STATE(1238), + [sym_null_coalesce] = STATE(1238), + [sym_subscript] = STATE(1253), + [sym_call] = STATE(1253), + [sym_list] = STATE(1524), + [sym_dictionary] = STATE(1524), + [sym_pair] = STATE(2543), + [sym_list_comprehension] = STATE(1524), + [sym_dictionary_comprehension] = STATE(1524), + [sym_conditional_expression] = STATE(1239), + [sym_string] = STATE(1238), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(441), [anon_sym_COMMA] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(547), [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), + [anon_sym_lambda] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(551), [anon_sym_RBRACE] = ACTIONS(682), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), + [anon_sym_STAR_STAR] = ACTIONS(569), [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), + [anon_sym_not] = ACTIONS(455), [anon_sym_PLUS] = ACTIONS(559), [anon_sym_DQUOTE] = ACTIONS(561), [anon_sym_DASH] = ACTIONS(559), [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), + [sym_integer] = ACTIONS(465), [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), + [sym_true] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [sym_none] = ACTIONS(465), + [sym_undefined] = ACTIONS(465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [116] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [117] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2262), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3228), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), - [sym_identifier] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(688), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [118] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(690), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [119] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2270), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3185), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), - [sym_identifier] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [120] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2269), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3105), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), - [sym_identifier] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(694), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [121] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [122] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [123] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(700), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [124] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [125] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2262), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3228), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), - [sym_identifier] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(688), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(704), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [126] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [127] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2266), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3150), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), - [sym_identifier] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(515), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [128] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(708), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [129] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [130] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2274), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3012), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), - [sym_identifier] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [131] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2268), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3193), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), - [sym_identifier] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(714), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [132] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [133] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [134] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [135] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [136] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [137] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [138] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2273), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3079), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), - [sym_identifier] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [139] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [140] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), - }, - [141] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2261), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3003), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), - [sym_identifier] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [142] = { - [sym_schema_expr] = STATE(1673), - [sym_lambda_expr] = STATE(1673), - [sym_quant_expr] = STATE(1673), - [sym_quant_op] = STATE(3087), - [sym_list_splat] = STATE(2837), - [sym_dotted_name] = STATE(2496), - [sym_expression] = STATE(2272), - [sym_as_expression] = STATE(1638), - [sym_selector_expression] = STATE(2213), - [sym_primary_expression] = STATE(1462), - [sym_paren_expression] = STATE(1673), - [sym_braces_expression] = STATE(1673), - [sym_not_operator] = STATE(1638), - [sym_boolean_operator] = STATE(1638), - [sym_long_expression] = STATE(1638), - [sym_string_literal_expr] = STATE(1673), - [sym_config_expr] = STATE(1673), - [sym_binary_operator] = STATE(1673), - [sym_unary_operator] = STATE(1673), - [sym_sequence_operation] = STATE(1638), - [sym_in_operation] = STATE(1692), - [sym_not_in_operation] = STATE(1692), - [sym_concatenation] = STATE(1692), - [sym_comparison_operator] = STATE(1638), - [sym_select_suffix] = STATE(1673), - [sym_attribute] = STATE(1673), - [sym_optional_attribute] = STATE(1673), - [sym_optional_item] = STATE(1673), - [sym_null_coalesce] = STATE(1673), - [sym_subscript] = STATE(1693), - [sym_call] = STATE(1693), - [sym_list] = STATE(1696), - [sym_dictionary] = STATE(1696), - [sym_list_comprehension] = STATE(1696), - [sym_dictionary_comprehension] = STATE(1696), - [sym__collection_elements] = STATE(3258), - [sym_conditional_expression] = STATE(1638), - [sym_string] = STATE(1673), - [sym_identifier] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_lambda] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_QMARK_DOT] = ACTIONS(525), - [anon_sym_not] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(535), - [sym_float] = ACTIONS(537), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_none] = ACTIONS(535), - [sym_undefined] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), - }, - [143] = { - [sym_schema_expr] = STATE(1289), - [sym_lambda_expr] = STATE(1289), - [sym_quant_expr] = STATE(1289), - [sym_quant_op] = STATE(3115), - [sym_dictionary_splat] = STATE(2919), - [sym_dotted_name] = STATE(2430), - [sym_expression] = STATE(2352), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(2210), - [sym_primary_expression] = STATE(1393), - [sym_paren_expression] = STATE(1289), - [sym_braces_expression] = STATE(1289), - [sym_not_operator] = STATE(1287), - [sym_boolean_operator] = STATE(1287), - [sym_long_expression] = STATE(1287), - [sym_string_literal_expr] = STATE(1289), - [sym_config_expr] = STATE(1289), - [sym_binary_operator] = STATE(1289), - [sym_unary_operator] = STATE(1289), - [sym_sequence_operation] = STATE(1287), - [sym_in_operation] = STATE(1264), - [sym_not_in_operation] = STATE(1264), - [sym_concatenation] = STATE(1264), - [sym_comparison_operator] = STATE(1287), - [sym_select_suffix] = STATE(1289), - [sym_attribute] = STATE(1289), - [sym_optional_attribute] = STATE(1289), - [sym_optional_item] = STATE(1289), - [sym_null_coalesce] = STATE(1289), - [sym_subscript] = STATE(1300), - [sym_call] = STATE(1300), - [sym_list] = STATE(1557), - [sym_dictionary] = STATE(1557), - [sym_pair] = STATE(2919), - [sym_list_comprehension] = STATE(1557), - [sym_dictionary_comprehension] = STATE(1557), - [sym_conditional_expression] = STATE(1287), - [sym_string] = STATE(1289), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_all] = ACTIONS(27), - [anon_sym_any] = ACTIONS(27), - [anon_sym_filter] = ACTIONS(27), - [anon_sym_map] = ACTIONS(27), - [anon_sym_STAR_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(463), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(471), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_none] = ACTIONS(471), - [sym_undefined] = ACTIONS(471), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(473), + [sym_string_start] = ACTIONS(467), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 28, + [0] = 30, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -22417,6 +20295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(519), 1, anon_sym_LBRACE, + ACTIONS(523), 1, + anon_sym_STAR, ACTIONS(525), 1, anon_sym_QMARK_DOT, ACTIONS(527), 1, @@ -22427,148 +20307,56 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(742), 1, + ACTIONS(686), 1, anon_sym_RBRACK, - STATE(1462), 1, + ACTIONS(688), 1, + sym_integer, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2217), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2772), 1, + sym_list_splat, + STATE(3110), 1, sym_quant_op, + STATE(3182), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, - sym_integer, + ACTIONS(535), 4, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1673), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [121] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(744), 1, - anon_sym_RBRACK, - STATE(1462), 1, - sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2344), 1, - sym_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -22576,7 +20364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -22584,7 +20372,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -22592,19 +20379,19 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [242] = 7, - ACTIONS(750), 1, + [125] = 7, + ACTIONS(694), 1, sym_isMutableFlag, - STATE(992), 1, + STATE(487), 1, sym_dict_expr, - STATE(1095), 1, + STATE(1098), 1, aux_sym_comparison_operator_repeat1, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(748), 26, + ACTIONS(692), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -22631,7 +20418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(746), 32, + ACTIONS(690), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -22664,75 +20451,77 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [321] = 27, - ACTIONS(507), 1, + [204] = 28, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(754), 1, - anon_sym_COLON, - STATE(1462), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(696), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2346), 1, + STATE(2297), 1, sym_expression, - STATE(2496), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(752), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -22740,7 +20529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -22748,7 +20537,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -22756,76 +20544,77 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [440] = 28, - ACTIONS(507), 1, + [325] = 28, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(756), 1, - anon_sym_RBRACK, - STATE(1462), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(698), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2297), 1, sym_expression, - STATE(2496), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -22833,7 +20622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -22841,7 +20630,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -22849,7 +20637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [561] = 28, + [446] = 29, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -22860,6 +20648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(519), 1, anon_sym_LBRACE, + ACTIONS(523), 1, + anon_sym_STAR, ACTIONS(525), 1, anon_sym_QMARK_DOT, ACTIONS(527), 1, @@ -22870,44 +20660,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(758), 1, + ACTIONS(700), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2208), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2772), 1, + sym_list_splat, + STATE(3057), 1, + sym__collection_elements, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -22918,7 +20708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -22926,7 +20716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -22934,7 +20724,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -22942,76 +20731,77 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [682] = 28, - ACTIONS(507), 1, + [569] = 28, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(760), 1, - anon_sym_RBRACK, - STATE(1462), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(702), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2297), 1, sym_expression, - STATE(2496), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -23019,7 +20809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -23027,7 +20817,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -23035,76 +20824,77 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [803] = 28, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, + [690] = 28, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(766), 1, - anon_sym_COMMA, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(770), 1, - anon_sym_RPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - STATE(1642), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(704), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2340), 1, + STATE(2297), 1, sym_expression, - STATE(2499), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2785), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -23112,7 +20902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -23120,7 +20910,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -23128,148 +20917,170 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [924] = 7, - ACTIONS(792), 1, - sym_isMutableFlag, - STATE(929), 1, - sym_dict_expr, - STATE(1130), 1, - aux_sym_comparison_operator_repeat1, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(748), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(746), 32, - anon_sym_import, + [811] = 28, + ACTIONS(441), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + ACTIONS(449), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(455), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [1003] = 28, - ACTIONS(762), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(796), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(706), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2313), 1, + STATE(2297), 1, sym_expression, - STATE(2499), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2763), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1524), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(465), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [932] = 28, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, + anon_sym_DQUOTE, + ACTIONS(563), 1, + sym_float, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(708), 1, + anon_sym_RBRACE, + STATE(1360), 1, + sym_primary_expression, + STATE(2154), 1, + sym_selector_expression, + STATE(2297), 1, + sym_expression, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1258), 2, sym_in_operation, sym_not_in_operation, - sym_concatenation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -23277,7 +21088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -23285,7 +21096,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -23293,7 +21103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1124] = 28, + [1053] = 29, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -23304,6 +21114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(519), 1, anon_sym_LBRACE, + ACTIONS(523), 1, + anon_sym_STAR, ACTIONS(525), 1, anon_sym_QMARK_DOT, ACTIONS(527), 1, @@ -23314,44 +21126,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(798), 1, + ACTIONS(686), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2217), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2772), 1, + sym_list_splat, + STATE(3110), 1, sym_quant_op, + STATE(3182), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -23362,7 +21174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -23370,7 +21182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -23378,7 +21190,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -23386,76 +21197,263 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1245] = 28, - ACTIONS(507), 1, + [1176] = 28, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(800), 1, - anon_sym_RBRACK, - STATE(1462), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(710), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2297), 1, sym_expression, - STATE(2496), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1253), 3, + sym_binary_operator, sym_subscript, sym_call, - ACTIONS(529), 3, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1524), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(465), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [1297] = 28, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, + anon_sym_DQUOTE, + ACTIONS(563), 1, + sym_float, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(712), 1, + anon_sym_RBRACE, + STATE(1360), 1, + sym_primary_expression, + STATE(2154), 1, + sym_selector_expression, + STATE(2297), 1, + sym_expression, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1524), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(465), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [1418] = 28, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, + anon_sym_DQUOTE, + ACTIONS(563), 1, + sym_float, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(714), 1, + anon_sym_RBRACE, + STATE(1360), 1, + sym_primary_expression, + STATE(2154), 1, + sym_selector_expression, + STATE(2297), 1, + sym_expression, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1258), 2, sym_in_operation, sym_not_in_operation, - sym_concatenation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -23463,7 +21461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -23471,7 +21469,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -23479,76 +21476,78 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1366] = 28, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, + [1539] = 29, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(523), 1, + anon_sym_STAR, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(802), 1, - anon_sym_COMMA, - ACTIONS(804), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(716), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2359), 1, + STATE(2204), 1, sym_expression, - STATE(2499), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2756), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(2772), 1, + sym_list_splat, + STATE(3028), 1, + sym__collection_elements, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -23556,7 +21555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -23564,7 +21563,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -23572,19 +21570,19 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1487] = 7, - ACTIONS(750), 1, + [1662] = 7, + ACTIONS(694), 1, sym_isMutableFlag, - STATE(528), 1, - aux_sym_comparison_operator_repeat1, - STATE(992), 1, + STATE(487), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, + STATE(2186), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(748), 26, + ACTIONS(692), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -23611,7 +21609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(746), 32, + ACTIONS(690), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -23644,76 +21642,77 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [1566] = 28, - ACTIONS(507), 1, + [1741] = 28, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(806), 1, - anon_sym_RBRACK, - STATE(1462), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(718), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2297), 1, sym_expression, - STATE(2496), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -23721,7 +21720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -23729,7 +21728,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -23737,76 +21735,77 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1687] = 28, - ACTIONS(507), 1, + [1862] = 28, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(808), 1, - anon_sym_RBRACK, - STATE(1462), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(720), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2297), 1, sym_expression, - STATE(2496), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -23814,7 +21813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -23822,7 +21821,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -23830,7 +21828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1808] = 28, + [1983] = 29, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -23841,6 +21839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(519), 1, anon_sym_LBRACE, + ACTIONS(523), 1, + anon_sym_STAR, ACTIONS(525), 1, anon_sym_QMARK_DOT, ACTIONS(527), 1, @@ -23851,44 +21851,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(810), 1, + ACTIONS(722), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2206), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2772), 1, + sym_list_splat, + STATE(2916), 1, + sym__collection_elements, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -23899,7 +21899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -23907,7 +21907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -23915,7 +21915,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -23923,76 +21922,263 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1929] = 28, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, + [2106] = 28, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(812), 1, - anon_sym_COMMA, - ACTIONS(814), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(724), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2324), 1, + STATE(2297), 1, sym_expression, - STATE(2499), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2834), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1253), 3, + sym_binary_operator, sym_subscript, sym_call, - ACTIONS(782), 3, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1524), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(465), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [2227] = 28, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, + anon_sym_DQUOTE, + ACTIONS(563), 1, + sym_float, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(726), 1, + anon_sym_RBRACE, + STATE(1360), 1, + sym_primary_expression, + STATE(2154), 1, + sym_selector_expression, + STATE(2297), 1, + sym_expression, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1524), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(465), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [2348] = 28, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, + anon_sym_DQUOTE, + ACTIONS(563), 1, + sym_float, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(728), 1, + anon_sym_RBRACE, + STATE(1360), 1, + sym_primary_expression, + STATE(2154), 1, + sym_selector_expression, + STATE(2297), 1, + sym_expression, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1258), 2, sym_in_operation, sym_not_in_operation, - sym_concatenation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24000,7 +22186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -24008,7 +22194,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -24016,7 +22201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2050] = 28, + [2469] = 29, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -24027,6 +22212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(519), 1, anon_sym_LBRACE, + ACTIONS(523), 1, + anon_sym_STAR, ACTIONS(525), 1, anon_sym_QMARK_DOT, ACTIONS(527), 1, @@ -24037,44 +22224,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(816), 1, + ACTIONS(730), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2213), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2772), 1, + sym_list_splat, + STATE(3030), 1, + sym__collection_elements, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -24085,7 +22272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24093,7 +22280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -24101,7 +22288,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -24109,76 +22295,170 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2171] = 28, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, + [2592] = 28, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(818), 1, - anon_sym_COMMA, - ACTIONS(820), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(732), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2364), 1, + STATE(2297), 1, sym_expression, - STATE(2499), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2894), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1524), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(465), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [2713] = 28, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, + anon_sym_DQUOTE, + ACTIONS(563), 1, + sym_float, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(734), 1, + anon_sym_RBRACE, + STATE(1360), 1, + sym_primary_expression, + STATE(2154), 1, + sym_selector_expression, + STATE(2297), 1, + sym_expression, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1258), 2, sym_in_operation, sym_not_in_operation, - sym_concatenation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24186,7 +22466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -24194,7 +22474,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -24202,17 +22481,21 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2292] = 28, + [2834] = 29, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, anon_sym_LPAREN, ACTIONS(511), 1, anon_sym_LBRACK, + ACTIONS(515), 1, + anon_sym_RBRACK, ACTIONS(517), 1, anon_sym_lambda, ACTIONS(519), 1, anon_sym_LBRACE, + ACTIONS(523), 1, + anon_sym_STAR, ACTIONS(525), 1, anon_sym_QMARK_DOT, ACTIONS(527), 1, @@ -24223,44 +22506,42 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(822), 1, - anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2216), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2772), 1, + sym_list_splat, + STATE(3042), 1, + sym__collection_elements, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -24271,7 +22552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24279,7 +22560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -24287,7 +22568,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -24295,21 +22575,21 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2413] = 7, - ACTIONS(750), 1, + [2957] = 7, + ACTIONS(736), 1, sym_isMutableFlag, - STATE(992), 1, + STATE(726), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, - STATE(2237), 1, + STATE(2186), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(748), 26, - sym__dedent, + ACTIONS(692), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -24334,7 +22614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(746), 32, + ACTIONS(690), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -24367,7 +22647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [2492] = 28, + [3036] = 29, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -24378,6 +22658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(519), 1, anon_sym_LBRACE, + ACTIONS(523), 1, + anon_sym_STAR, ACTIONS(525), 1, anon_sym_QMARK_DOT, ACTIONS(527), 1, @@ -24388,44 +22670,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(824), 1, + ACTIONS(738), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2210), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2772), 1, + sym_list_splat, + STATE(3110), 1, sym_quant_op, + STATE(3159), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -24436,7 +22718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24444,7 +22726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -24452,7 +22734,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -24460,19 +22741,19 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2613] = 7, - ACTIONS(792), 1, + [3159] = 7, + ACTIONS(736), 1, sym_isMutableFlag, - STATE(532), 1, - aux_sym_comparison_operator_repeat1, - STATE(929), 1, + STATE(726), 1, sym_dict_expr, - STATE(2053), 1, + STATE(1061), 1, + aux_sym_comparison_operator_repeat1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(748), 26, + ACTIONS(692), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -24499,7 +22780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(746), 32, + ACTIONS(690), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -24532,7 +22813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [2692] = 28, + [3238] = 29, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -24543,6 +22824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(519), 1, anon_sym_LBRACE, + ACTIONS(523), 1, + anon_sym_STAR, ACTIONS(525), 1, anon_sym_QMARK_DOT, ACTIONS(527), 1, @@ -24553,44 +22836,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(826), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2212), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2772), 1, + sym_list_splat, + STATE(2958), 1, + sym__collection_elements, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -24601,7 +22884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24609,7 +22892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -24617,7 +22900,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -24625,75 +22907,77 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2813] = 27, - ACTIONS(507), 1, + [3361] = 28, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(830), 1, - anon_sym_COLON, - STATE(1462), 1, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(742), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2311), 1, + STATE(2297), 1, sym_expression, - STATE(2496), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(828), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24701,7 +22985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -24709,7 +22993,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -24717,76 +23000,149 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2932] = 28, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [3482] = 7, + ACTIONS(736), 1, + sym_isMutableFlag, + STATE(419), 1, + aux_sym_comparison_operator_repeat1, + STATE(726), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(692), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(788), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(790), 1, + ACTIONS(690), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [3561] = 28, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, - ACTIONS(832), 1, - anon_sym_COMMA, - ACTIONS(834), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, + anon_sym_DQUOTE, + ACTIONS(563), 1, + sym_float, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + ACTIONS(744), 1, + anon_sym_RBRACE, + STATE(1360), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2347), 1, + STATE(2297), 1, sym_expression, - STATE(2499), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2808), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24794,7 +23150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -24802,7 +23158,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -24810,7 +23165,79 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3053] = 28, + [3682] = 7, + ACTIONS(694), 1, + sym_isMutableFlag, + STATE(423), 1, + aux_sym_comparison_operator_repeat1, + STATE(487), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(692), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(690), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [3761] = 29, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -24821,6 +23248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(519), 1, anon_sym_LBRACE, + ACTIONS(523), 1, + anon_sym_STAR, ACTIONS(525), 1, anon_sym_QMARK_DOT, ACTIONS(527), 1, @@ -24831,44 +23260,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(836), 1, + ACTIONS(746), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2209), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2772), 1, + sym_list_splat, + STATE(2987), 1, + sym__collection_elements, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -24879,7 +23308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24887,7 +23316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -24895,7 +23324,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -24903,76 +23331,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3174] = 28, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, + [3884] = 28, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(838), 1, - anon_sym_COMMA, - ACTIONS(840), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(750), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2310), 1, + STATE(2282), 1, sym_expression, - STATE(2499), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2822), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24980,7 +23408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -24988,7 +23416,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -24996,76 +23423,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3295] = 28, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, + [4004] = 28, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(842), 1, - anon_sym_COMMA, - ACTIONS(844), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(752), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2366), 1, + STATE(2282), 1, sym_expression, - STATE(2499), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2769), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25073,7 +23500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -25081,7 +23508,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -25089,7 +23515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3416] = 28, + [4124] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -25110,44 +23536,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - ACTIONS(846), 1, + ACTIONS(754), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2282), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, + STATE(2862), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -25158,7 +23584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25166,7 +23592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -25174,7 +23600,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -25182,7 +23607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3537] = 28, + [4244] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -25203,44 +23628,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - ACTIONS(848), 1, + ACTIONS(756), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2282), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, + STATE(2862), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -25251,7 +23676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25259,7 +23684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -25267,7 +23692,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -25275,76 +23699,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3658] = 28, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, + [4364] = 28, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(850), 1, - anon_sym_COMMA, - ACTIONS(852), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(758), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2348), 1, + STATE(2282), 1, sym_expression, - STATE(2499), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2735), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25352,7 +23776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -25360,7 +23784,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -25368,75 +23791,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3779] = 27, - ACTIONS(453), 1, + [4484] = 28, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(573), 1, - anon_sym_STAR_STAR, - STATE(1393), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(760), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2352), 1, + STATE(2282), 1, sym_expression, - STATE(2430), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - STATE(2919), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(559), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25444,7 +23868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -25452,7 +23876,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -25460,7 +23883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3898] = 28, + [4604] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -25481,44 +23904,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - ACTIONS(854), 1, + ACTIONS(762), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2282), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, + STATE(2862), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -25529,7 +23952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25537,7 +23960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -25545,7 +23968,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -25553,7 +23975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4019] = 28, + [4724] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -25574,44 +23996,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - ACTIONS(856), 1, + ACTIONS(764), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2282), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, + STATE(2862), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -25622,7 +24044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25630,7 +24052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -25638,7 +24060,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -25646,7 +24067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4140] = 28, + [4844] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -25667,44 +24088,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - ACTIONS(858), 1, + ACTIONS(766), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2282), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, + STATE(2862), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -25715,7 +24136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25723,7 +24144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -25731,7 +24152,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -25739,7 +24159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4261] = 28, + [4964] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -25760,44 +24180,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - ACTIONS(860), 1, + ACTIONS(768), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2282), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, + STATE(2862), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -25808,7 +24228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25816,7 +24236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -25824,7 +24244,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -25832,7 +24251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4382] = 28, + [5084] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -25853,44 +24272,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - ACTIONS(862), 1, + ACTIONS(770), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2282), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, + STATE(2862), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -25901,7 +24320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25909,7 +24328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -25917,7 +24336,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -25925,76 +24343,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4503] = 28, - ACTIONS(507), 1, + [5204] = 28, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(776), 1, + anon_sym_COMMA, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(780), 1, + anon_sym_RPAREN, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(864), 1, - anon_sym_RBRACK, - STATE(1462), 1, + STATE(1644), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2279), 1, sym_expression, - STATE(2496), 1, + STATE(2369), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2806), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26002,7 +24420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -26010,7 +24428,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -26018,7 +24435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4624] = 28, + [5324] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -26039,44 +24456,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - ACTIONS(866), 1, + ACTIONS(802), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2282), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, + STATE(2862), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -26087,7 +24504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26095,7 +24512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -26103,7 +24520,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -26111,79 +24527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4745] = 7, - ACTIONS(792), 1, - sym_isMutableFlag, - STATE(929), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2237), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(748), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(746), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [4824] = 28, + [5444] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -26204,44 +24548,44 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - ACTIONS(868), 1, + ACTIONS(804), 1, anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2282), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, + STATE(2862), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -26252,7 +24596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26260,7 +24604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -26268,7 +24612,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -26276,76 +24619,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4945] = 28, - ACTIONS(507), 1, + [5564] = 28, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - ACTIONS(870), 1, - anon_sym_RBRACK, - STATE(1462), 1, + ACTIONS(806), 1, + anon_sym_COMMA, + ACTIONS(808), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2301), 1, sym_expression, - STATE(2496), 1, + STATE(2369), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2743), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26353,7 +24696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -26361,7 +24704,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -26369,7 +24711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5066] = 28, + [5684] = 27, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -26390,44 +24732,43 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(812), 1, anon_sym_COLON, - ACTIONS(872), 1, - anon_sym_RBRACK, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2344), 1, + STATE(2292), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + ACTIONS(810), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -26438,7 +24779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26446,7 +24787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -26454,7 +24795,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -26462,72 +24802,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5187] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(878), 1, + [5802] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(880), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(884), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(886), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(890), 1, - anon_sym_, - ACTIONS(892), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(896), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - STATE(238), 1, - aux_sym_long_expression_repeat1, - STATE(341), 1, - sym_expression, - STATE(394), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(814), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(614), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(876), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(888), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26535,7 +24879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -26543,7 +24887,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -26551,72 +24894,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5301] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(902), 1, + [5922] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(904), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(908), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(910), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(914), 1, - anon_sym_, - ACTIONS(916), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(920), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - STATE(298), 1, - aux_sym_long_expression_repeat1, - STATE(311), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(816), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(324), 1, - sym_expression, - STATE(1144), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(900), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(912), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26624,7 +24971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -26632,7 +24979,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -26640,72 +24986,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5415] = 25, - ACTIONS(902), 1, + [6042] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(904), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(908), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(916), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(920), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(922), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(926), 1, - anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(318), 1, - sym_expression, - STATE(395), 1, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(818), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(544), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(900), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(912), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26713,7 +25063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -26721,7 +25071,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -26729,72 +25078,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5529] = 25, - ACTIONS(902), 1, + [6162] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(904), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(908), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(916), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(920), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(922), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(928), 1, - anon_sym_, - STATE(191), 1, - aux_sym_long_expression_repeat1, - STATE(324), 1, - sym_expression, - STATE(395), 1, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(820), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(544), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(900), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(912), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26802,7 +25155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -26810,7 +25163,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -26818,74 +25170,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5643] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, + [6282] = 28, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(930), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(822), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2282), 1, sym_expression, - STATE(2499), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26893,7 +25247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -26901,7 +25255,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -26909,161 +25262,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5761] = 25, - ACTIONS(932), 1, - sym_identifier, - ACTIONS(938), 1, + [6402] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(941), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(944), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(947), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(953), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(959), 1, - anon_sym_, - ACTIONS(962), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(968), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1999), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(826), 1, + anon_sym_COLON, + STATE(1441), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2553), 1, + STATE(2253), 1, sym_expression, - STATE(3115), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(935), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(956), 3, + ACTIONS(824), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(950), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1261), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(965), 6, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, + STATE(1707), 3, sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [5875] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(975), 1, - anon_sym_LPAREN, - ACTIONS(977), 1, - anon_sym_LBRACK, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(981), 1, - anon_sym_LBRACE, - ACTIONS(983), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_, - ACTIONS(989), 1, - anon_sym_DQUOTE, - ACTIONS(993), 1, - sym_string_start, - STATE(197), 1, - aux_sym_long_expression_repeat1, - STATE(1556), 1, - sym_primary_expression, - STATE(1615), 1, - sym_expression, - STATE(1811), 1, - sym_selector_expression, - STATE(2458), 1, - sym_dotted_name, - STATE(3070), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(973), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1876), 2, sym_subscript, sym_call, - ACTIONS(985), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27071,7 +25338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27079,7 +25346,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27087,72 +25353,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5989] = 25, - ACTIONS(971), 1, + [6520] = 28, + ACTIONS(772), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(981), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(983), 1, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_, - ACTIONS(989), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(993), 1, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, sym_string_start, - STATE(197), 1, - aux_sym_long_expression_repeat1, - STATE(1556), 1, + ACTIONS(828), 1, + anon_sym_COMMA, + ACTIONS(830), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(1615), 1, - sym_expression, - STATE(1811), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2259), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2736), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(985), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27160,7 +25430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27168,7 +25438,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27176,72 +25445,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6103] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(975), 1, + [6640] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(981), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(983), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(989), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(993), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(995), 1, - anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1556), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(832), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(1618), 1, - sym_expression, - STATE(1811), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(985), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27249,7 +25522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27257,7 +25530,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27265,72 +25537,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6217] = 25, - ACTIONS(971), 1, + [6760] = 27, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(981), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(983), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_, - ACTIONS(989), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(993), 1, - sym_string_start, - STATE(197), 1, - aux_sym_long_expression_repeat1, - STATE(1556), 1, + ACTIONS(563), 1, + sym_float, + ACTIONS(569), 1, + anon_sym_STAR_STAR, + STATE(1360), 1, sym_primary_expression, - STATE(1615), 1, - sym_expression, - STATE(1811), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2297), 1, + sym_expression, + STATE(2457), 1, sym_dotted_name, - STATE(3070), 1, + STATE(3143), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(985), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + STATE(2859), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 6, + ACTIONS(465), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27338,7 +25613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27346,7 +25621,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27354,72 +25628,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6331] = 25, - ACTIONS(407), 1, + [6878] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(423), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(997), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1001), 1, - anon_sym_, - STATE(202), 1, - aux_sym_long_expression_repeat1, - STATE(1200), 1, - sym_expression, - STATE(1229), 1, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(834), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(1312), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(421), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27427,7 +25705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27435,7 +25713,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27443,72 +25720,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6445] = 25, - ACTIONS(407), 1, + [6998] = 28, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(423), 1, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, sym_string_start, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1001), 1, - anon_sym_, - STATE(202), 1, - aux_sym_long_expression_repeat1, - STATE(1200), 1, - sym_expression, - STATE(1229), 1, + ACTIONS(836), 1, + anon_sym_COMMA, + ACTIONS(838), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(1312), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2254), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2721), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(421), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27516,7 +25797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27524,7 +25805,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27532,74 +25812,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6559] = 27, - ACTIONS(762), 1, + [7118] = 28, + ACTIONS(772), 1, sym_identifier, - ACTIONS(764), 1, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(840), 1, + anon_sym_COMMA, + ACTIONS(842), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1644), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2287), 1, sym_expression, - STATE(2499), 1, + STATE(2369), 1, sym_dotted_name, - STATE(2933), 1, + STATE(2762), 1, sym_keyword_argument, - STATE(3102), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27607,7 +25889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27615,7 +25897,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27623,72 +25904,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6677] = 25, - ACTIONS(407), 1, + [7238] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(423), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(997), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1206), 1, - sym_expression, - STATE(1229), 1, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(844), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(1312), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(421), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27696,7 +25981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27704,7 +25989,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27712,72 +25996,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6791] = 25, - ACTIONS(407), 1, + [7358] = 28, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(423), 1, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, sym_string_start, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1001), 1, - anon_sym_, - STATE(202), 1, - aux_sym_long_expression_repeat1, - STATE(1200), 1, - sym_expression, - STATE(1229), 1, + ACTIONS(846), 1, + anon_sym_COMMA, + ACTIONS(848), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(1312), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2289), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2788), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(421), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27785,7 +26073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27793,7 +26081,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27801,72 +26088,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6905] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1009), 1, + [7478] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1011), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1013), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1015), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(1019), 1, - anon_sym_, - ACTIONS(1021), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - STATE(206), 1, - aux_sym_long_expression_repeat1, - STATE(1432), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(850), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(1465), 1, - sym_expression, - STATE(1535), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(1017), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27874,7 +26165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27882,7 +26173,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27890,72 +26180,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7019] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, + [7598] = 28, + ACTIONS(772), 1, sym_identifier, - ACTIONS(1009), 1, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1011), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1013), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1015), 1, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(1019), 1, - anon_sym_, - ACTIONS(1021), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - STATE(206), 1, - aux_sym_long_expression_repeat1, - STATE(1432), 1, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(852), 1, + anon_sym_COMMA, + ACTIONS(854), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(1465), 1, - sym_expression, - STATE(1535), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2294), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2676), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(1017), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27963,7 +26257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -27971,7 +26265,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -27979,72 +26272,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7133] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1009), 1, + [7718] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1011), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1013), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1015), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(1021), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1023), 1, - anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1432), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(856), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(1469), 1, - sym_expression, - STATE(1535), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(1017), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28052,7 +26349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28060,7 +26357,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28068,72 +26364,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7247] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, + [7838] = 28, + ACTIONS(772), 1, sym_identifier, - ACTIONS(1009), 1, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1011), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1013), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1015), 1, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(1019), 1, - anon_sym_, - ACTIONS(1021), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - STATE(206), 1, - aux_sym_long_expression_repeat1, - STATE(1432), 1, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(858), 1, + anon_sym_COMMA, + ACTIONS(860), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(1465), 1, - sym_expression, - STATE(1535), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2262), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2813), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(1017), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28141,7 +26441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28149,7 +26449,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28157,72 +26456,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7361] = 25, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1025), 1, + [7958] = 28, + ACTIONS(772), 1, sym_identifier, - ACTIONS(1027), 1, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1029), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1033), 1, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(1037), 1, - anon_sym_, - ACTIONS(1039), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - STATE(210), 1, - aux_sym_long_expression_repeat1, - STATE(1716), 1, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(862), 1, + anon_sym_COMMA, + ACTIONS(864), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(1814), 1, - sym_expression, - STATE(1911), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2306), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3102), 1, + STATE(2822), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(764), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(1035), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28230,7 +26533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28238,7 +26541,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28246,72 +26548,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7475] = 25, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, + [8078] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1029), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1033), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(1037), 1, - anon_sym_, - ACTIONS(1039), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - STATE(210), 1, - aux_sym_long_expression_repeat1, - STATE(1716), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(866), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(1814), 1, - sym_expression, - STATE(1911), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3102), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(764), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(1035), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28319,7 +26625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28327,7 +26633,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28335,72 +26640,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7589] = 25, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, + [8198] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1029), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1033), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(1039), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1041), 1, - anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1669), 1, - sym_expression, - STATE(1716), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(868), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(1911), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3102), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(764), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(1035), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28408,7 +26717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28416,7 +26725,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28424,72 +26732,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7703] = 25, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1027), 1, + [8318] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1029), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1033), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(1037), 1, - anon_sym_, - ACTIONS(1039), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - STATE(210), 1, - aux_sym_long_expression_repeat1, - STATE(1716), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(870), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(1814), 1, - sym_expression, - STATE(1911), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3102), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(764), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(1035), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28497,7 +26809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28505,7 +26817,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28513,72 +26824,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7817] = 25, - ACTIONS(455), 1, + [8438] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1043), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1045), 1, - anon_sym_not, - ACTIONS(1047), 1, - anon_sym_, - STATE(214), 1, - aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1412), 1, + ACTIONS(748), 1, + anon_sym_COLON, + ACTIONS(872), 1, + anon_sym_RBRACK, + STATE(1441), 1, sym_primary_expression, - STATE(1424), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(465), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28586,7 +26901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28594,7 +26909,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28602,72 +26916,646 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7931] = 25, - ACTIONS(455), 1, + [8558] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(876), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(457), 1, anon_sym_LBRACK, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_DQUOTE, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1045), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(874), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1047), 1, - anon_sym_, - STATE(214), 1, - aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1412), 1, - sym_primary_expression, - STATE(1424), 1, - sym_selector_expression, - STATE(2494), 1, - sym_dotted_name, - STATE(3115), 1, - sym_quant_op, - ACTIONS(5), 2, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [8629] = 22, + ACTIONS(884), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_LBRACK, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, + anon_sym_QMARK_DOT, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(902), 1, + anon_sym_PIPE, + ACTIONS(904), 1, + anon_sym_AMP, + ACTIONS(906), 1, + anon_sym_CARET, + ACTIONS(912), 1, + anon_sym_is, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(890), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(898), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(900), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(888), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(910), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(880), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(882), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(878), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [8736] = 6, + ACTIONS(920), 1, + anon_sym_and, + ACTIONS(922), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(916), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(918), 31, + anon_sym_import, anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [8811] = 8, + ACTIONS(928), 1, + anon_sym_and, + ACTIONS(930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(916), 12, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(465), 3, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(926), 13, + anon_sym_STAR_STAR, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + ACTIONS(918), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [8890] = 8, + ACTIONS(916), 1, + anon_sym_QMARK_DOT, + ACTIONS(928), 1, + anon_sym_and, + ACTIONS(930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_or, + ACTIONS(926), 24, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(924), 27, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [8969] = 6, + ACTIONS(928), 1, + anon_sym_and, + ACTIONS(930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(916), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(918), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [9044] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(358), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(934), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(932), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [9115] = 10, + ACTIONS(884), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_LBRACK, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, + anon_sym_QMARK_DOT, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(938), 21, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(936), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [9198] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(940), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, sym_in_operation, sym_not_in_operation, - sym_concatenation, + ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28675,7 +27563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28683,7 +27571,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28691,72 +27578,218 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8045] = 25, - ACTIONS(455), 1, + [9315] = 8, + ACTIONS(916), 1, + anon_sym_QMARK_DOT, + ACTIONS(920), 1, + anon_sym_and, + ACTIONS(922), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_or, + ACTIONS(926), 24, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(457), 1, anon_sym_LBRACK, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(473), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(924), 27, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [9394] = 10, + ACTIONS(884), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_LBRACK, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, + anon_sym_QMARK_DOT, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(944), 21, + sym__dedent, sym_string_start, - ACTIONS(1043), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(942), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [9477] = 27, + ACTIONS(772), 1, sym_identifier, - ACTIONS(1045), 1, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(1049), 1, - anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1176), 1, - sym_expression, - STATE(1412), 1, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(946), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(1424), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(465), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28764,7 +27797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28772,7 +27805,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28780,72 +27812,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8159] = 25, - ACTIONS(455), 1, + [9594] = 21, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, + anon_sym_QMARK_DOT, + ACTIONS(902), 1, + anon_sym_PIPE, + ACTIONS(904), 1, + anon_sym_AMP, + ACTIONS(906), 1, + anon_sym_CARET, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(952), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_is, + STATE(445), 1, + sym_argument_list, + STATE(1088), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(890), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(898), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(900), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(950), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(954), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(467), 1, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(1043), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(880), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + sym_integer, sym_identifier, - ACTIONS(1045), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [9699] = 25, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(1047), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, + anon_sym_LBRACK, + ACTIONS(962), 1, + anon_sym_LBRACE, + ACTIONS(966), 1, anon_sym_, - STATE(214), 1, + ACTIONS(968), 1, + anon_sym_DQUOTE, + STATE(208), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1412), 1, + STATE(1441), 1, sym_primary_expression, - STATE(1424), 1, + STATE(1452), 1, + sym_expression, + STATE(2161), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(465), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28853,7 +27969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28861,7 +27977,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28869,72 +27984,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8273] = 25, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, + [9812] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(1057), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(1059), 1, + ACTIONS(459), 1, + anon_sym_DQUOTE, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(976), 1, anon_sym_, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - STATE(227), 1, + STATE(210), 1, aux_sym_long_expression_repeat1, - STATE(1511), 1, + STATE(1140), 1, sym_expression, - STATE(1547), 1, + STATE(1945), 1, sym_primary_expression, - STATE(1783), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(1061), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(974), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28942,7 +28057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -28950,7 +28065,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -28958,74 +28072,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8387] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [9925] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1067), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(976), 1, + anon_sym_, + STATE(210), 1, + aux_sym_long_expression_repeat1, + STATE(1140), 1, + sym_expression, + STATE(1945), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2414), 1, - sym_expression, - STATE(2499), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(441), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(974), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29033,7 +28145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29041,7 +28153,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29049,36 +28160,36 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8505] = 25, + [10038] = 25, ACTIONS(23), 1, anon_sym_lambda, ACTIONS(55), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(978), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(980), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(982), 1, anon_sym_LBRACK, - ACTIONS(1057), 1, + ACTIONS(984), 1, anon_sym_LBRACE, - ACTIONS(1059), 1, + ACTIONS(986), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(990), 1, anon_sym_, - ACTIONS(1065), 1, + ACTIONS(992), 1, anon_sym_DQUOTE, - STATE(227), 1, + STATE(218), 1, aux_sym_long_expression_repeat1, - STATE(1511), 1, - sym_expression, - STATE(1547), 1, + STATE(1526), 1, sym_primary_expression, - STATE(1783), 1, + STATE(1564), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2453), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, @@ -29086,23 +28197,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(1061), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -29114,7 +28225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29122,7 +28233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29130,7 +28241,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29138,74 +28248,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8619] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, + [10151] = 27, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + STATE(1441), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2240), 1, sym_expression, - STATE(2499), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(2824), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29213,7 +28323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29221,7 +28331,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29229,72 +28338,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8737] = 25, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(904), 1, - anon_sym_LBRACK, - ACTIONS(906), 1, + [10268] = 25, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(908), 1, - anon_sym_LBRACE, - ACTIONS(916), 1, - anon_sym_DQUOTE, - ACTIONS(920), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(800), 1, sym_string_start, - ACTIONS(922), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(928), 1, + ACTIONS(996), 1, + anon_sym_LPAREN, + ACTIONS(998), 1, + anon_sym_LBRACK, + ACTIONS(1000), 1, + anon_sym_LBRACE, + ACTIONS(1004), 1, anon_sym_, - STATE(191), 1, + ACTIONS(1006), 1, + anon_sym_DQUOTE, + STATE(236), 1, aux_sym_long_expression_repeat1, - STATE(324), 1, - sym_expression, - STATE(395), 1, + STATE(1644), 1, sym_primary_expression, - STATE(544), 1, + STATE(1677), 1, + sym_expression, + STATE(2179), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(900), 2, + ACTIONS(774), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(912), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1002), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 6, + ACTIONS(796), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29302,7 +28411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29310,7 +28419,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29318,72 +28426,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8851] = 25, - ACTIONS(902), 1, + [10381] = 25, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(904), 1, + ACTIONS(960), 1, anon_sym_LBRACK, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(908), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - ACTIONS(916), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(928), 1, + ACTIONS(1008), 1, anon_sym_, - STATE(191), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(324), 1, + STATE(1405), 1, sym_expression, - STATE(395), 1, + STATE(1441), 1, sym_primary_expression, - STATE(544), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(900), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(912), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29391,7 +28499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29399,7 +28507,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29407,74 +28514,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8965] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [10494] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1071), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_not, + ACTIONS(1016), 1, + anon_sym_, + STATE(309), 1, + aux_sym_long_expression_repeat1, + STATE(1140), 1, + sym_expression, + STATE(1554), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2176), 1, sym_selector_expression, STATE(2414), 1, - sym_expression, - STATE(2499), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(441), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1014), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29482,7 +28587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29490,7 +28595,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29498,72 +28602,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9083] = 25, - ACTIONS(455), 1, + [10607] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1073), 1, + ACTIONS(970), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1079), 1, + ACTIONS(1018), 1, anon_sym_, - STATE(224), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, + STATE(1145), 1, sym_expression, - STATE(1537), 1, + STATE(1945), 1, sym_primary_expression, - STATE(1709), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1077), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(974), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29571,7 +28675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29579,7 +28683,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29587,72 +28690,206 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9197] = 25, - ACTIONS(455), 1, + [10720] = 4, + STATE(344), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1022), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(457), 1, anon_sym_LBRACK, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(473), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1020), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [10791] = 4, + STATE(211), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1026), 26, + sym__dedent, sym_string_start, - ACTIONS(1073), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1024), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1075), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [10862] = 25, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(1081), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(996), 1, + anon_sym_LPAREN, + ACTIONS(998), 1, + anon_sym_LBRACK, + ACTIONS(1000), 1, + anon_sym_LBRACE, + ACTIONS(1004), 1, anon_sym_, - STATE(194), 1, + ACTIONS(1006), 1, + anon_sym_DQUOTE, + STATE(236), 1, aux_sym_long_expression_repeat1, - STATE(1176), 1, - sym_expression, - STATE(1537), 1, + STATE(1644), 1, sym_primary_expression, - STATE(1709), 1, + STATE(1677), 1, + sym_expression, + STATE(2179), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(774), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1077), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1002), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(796), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29660,7 +28897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29668,7 +28905,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29676,72 +28912,210 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9311] = 25, - ACTIONS(455), 1, + [10975] = 4, + STATE(359), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1022), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(457), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1020), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(461), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [11046] = 8, + ACTIONS(920), 1, + anon_sym_and, + ACTIONS(922), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(916), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(467), 1, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(926), 13, + anon_sym_STAR_STAR, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + ACTIONS(918), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [11125] = 25, + ACTIONS(445), 1, + anon_sym_LPAREN, + ACTIONS(447), 1, + anon_sym_LBRACK, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(451), 1, + anon_sym_LBRACE, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1073), 1, + ACTIONS(1028), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(1030), 1, anon_sym_not, - ACTIONS(1079), 1, + ACTIONS(1032), 1, anon_sym_, - STATE(224), 1, + STATE(219), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, + STATE(1140), 1, sym_expression, - STATE(1537), 1, + STATE(1930), 1, sym_primary_expression, - STATE(1709), 1, + STATE(1994), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2440), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1077), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(974), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29749,7 +29123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29757,7 +29131,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29765,74 +29138,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9425] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [11238] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1028), 1, + sym_identifier, + ACTIONS(1030), 1, + anon_sym_not, + ACTIONS(1032), 1, + anon_sym_, + STATE(219), 1, + aux_sym_long_expression_repeat1, + STATE(1140), 1, + sym_expression, + STATE(1930), 1, sym_primary_expression, - STATE(2233), 1, + STATE(1994), 1, sym_selector_expression, - STATE(2414), 1, - sym_expression, - STATE(2499), 1, + STATE(2440), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(441), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(974), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29840,7 +29211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29848,7 +29219,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29856,36 +29226,36 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9543] = 25, + [11351] = 25, ACTIONS(23), 1, anon_sym_lambda, ACTIONS(55), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(978), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(980), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(982), 1, anon_sym_LBRACK, - ACTIONS(1057), 1, + ACTIONS(984), 1, anon_sym_LBRACE, - ACTIONS(1059), 1, + ACTIONS(986), 1, anon_sym_not, - ACTIONS(1065), 1, + ACTIONS(992), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1034), 1, anon_sym_, - STATE(194), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1510), 1, - sym_expression, - STATE(1547), 1, + STATE(1526), 1, sym_primary_expression, - STATE(1783), 1, + STATE(1583), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2453), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, @@ -29893,23 +29263,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(1061), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -29921,7 +29291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29929,7 +29299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -29937,7 +29307,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -29945,72 +29314,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9657] = 25, - ACTIONS(455), 1, + [11464] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1073), 1, + ACTIONS(1028), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(1030), 1, anon_sym_not, - ACTIONS(1079), 1, + ACTIONS(1036), 1, anon_sym_, - STATE(224), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, + STATE(1145), 1, sym_expression, - STATE(1537), 1, + STATE(1930), 1, sym_primary_expression, - STATE(1709), 1, + STATE(1994), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2440), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1077), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(974), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30018,7 +29387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30026,7 +29395,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30034,74 +29402,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9771] = 27, - ACTIONS(762), 1, + [11577] = 27, + ACTIONS(772), 1, sym_identifier, - ACTIONS(764), 1, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(1087), 1, + ACTIONS(1038), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1644), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2352), 1, sym_expression, - STATE(2499), 1, + STATE(2369), 1, sym_dotted_name, - STATE(2933), 1, + STATE(2874), 1, sym_keyword_argument, - STATE(3102), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30109,7 +29477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30117,7 +29485,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30125,72 +29492,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9889] = 25, - ACTIONS(1089), 1, + [11694] = 25, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1093), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(1095), 1, + ACTIONS(960), 1, anon_sym_LBRACK, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1099), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - ACTIONS(1101), 1, - anon_sym_not, - ACTIONS(1105), 1, + ACTIONS(966), 1, anon_sym_, - ACTIONS(1107), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(1111), 1, - sym_string_start, - STATE(232), 1, + STATE(208), 1, aux_sym_long_expression_repeat1, - STATE(1033), 1, - sym_expression, - STATE(1062), 1, + STATE(1441), 1, sym_primary_expression, - STATE(1075), 1, + STATE(1452), 1, + sym_expression, + STATE(2161), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1091), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1103), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30198,7 +29565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30206,7 +29573,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30214,72 +29580,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10003] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(1053), 1, + [11807] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1057), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1065), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1113), 1, - anon_sym_, - STATE(295), 1, - aux_sym_long_expression_repeat1, - STATE(1511), 1, - sym_expression, - STATE(1604), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + STATE(1441), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2234), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2745), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(1061), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30287,7 +29655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30295,7 +29663,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30303,72 +29670,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10117] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1093), 1, + [11924] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(1095), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(1097), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(1099), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(1101), 1, - anon_sym_not, - ACTIONS(1107), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(1111), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1115), 1, + ACTIONS(1028), 1, + sym_identifier, + ACTIONS(1030), 1, + anon_sym_not, + ACTIONS(1032), 1, anon_sym_, - STATE(194), 1, + STATE(219), 1, aux_sym_long_expression_repeat1, - STATE(1037), 1, + STATE(1140), 1, sym_expression, - STATE(1062), 1, + STATE(1930), 1, sym_primary_expression, - STATE(1075), 1, + STATE(1994), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2440), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1091), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1103), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(974), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30376,7 +29743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30384,7 +29751,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30392,72 +29758,141 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10231] = 25, - ACTIONS(1089), 1, + [12037] = 4, + STATE(214), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1026), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1024), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [12108] = 27, + ACTIONS(772), 1, sym_identifier, - ACTIONS(1093), 1, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1095), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1097), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(1099), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1101), 1, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(1105), 1, - anon_sym_, - ACTIONS(1107), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1111), 1, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, sym_string_start, - STATE(232), 1, - aux_sym_long_expression_repeat1, - STATE(1033), 1, - sym_expression, - STATE(1062), 1, + ACTIONS(1040), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(1075), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1091), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1103), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30465,7 +29900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30473,7 +29908,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30481,72 +29915,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10345] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1093), 1, + [12225] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1095), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1097), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(1099), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1101), 1, + ACTIONS(523), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(1105), 1, - anon_sym_, - ACTIONS(1107), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1111), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - STATE(232), 1, - aux_sym_long_expression_repeat1, - STATE(1033), 1, - sym_expression, - STATE(1062), 1, + ACTIONS(684), 1, + sym_identifier, + STATE(1441), 1, sym_primary_expression, - STATE(1075), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2348), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2837), 1, + sym_list_splat, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1091), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1103), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30554,7 +29990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30562,7 +29998,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30570,72 +30005,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10459] = 25, - ACTIONS(23), 1, + [12342] = 25, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(55), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1051), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(960), 1, anon_sym_LBRACK, - ACTIONS(1057), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - ACTIONS(1059), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(966), 1, anon_sym_, - ACTIONS(1065), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - STATE(227), 1, + STATE(208), 1, aux_sym_long_expression_repeat1, - STATE(1511), 1, - sym_expression, - STATE(1547), 1, + STATE(1441), 1, sym_primary_expression, - STATE(1783), 1, + STATE(1452), 1, + sym_expression, + STATE(2161), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(1061), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30643,7 +30078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30651,7 +30086,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30659,74 +30093,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10573] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [12455] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1046), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1048), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1052), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1058), 1, + anon_sym_, + ACTIONS(1060), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1462), 1, + STATE(201), 1, sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2305), 1, + STATE(249), 1, + aux_sym_long_expression_repeat1, + STATE(328), 1, sym_expression, - STATE(2496), 1, + STATE(1063), 1, + sym_selector_expression, + STATE(2443), 1, sym_dotted_name, - STATE(2760), 1, - sym_slice, - STATE(3087), 1, + STATE(2930), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(1044), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1056), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1062), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30734,7 +30166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30742,7 +30174,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30750,72 +30181,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10691] = 25, - ACTIONS(874), 1, + [12568] = 25, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(978), 1, sym_identifier, - ACTIONS(878), 1, + ACTIONS(980), 1, anon_sym_LPAREN, - ACTIONS(880), 1, + ACTIONS(982), 1, anon_sym_LBRACK, - ACTIONS(882), 1, - anon_sym_lambda, - ACTIONS(884), 1, + ACTIONS(984), 1, anon_sym_LBRACE, - ACTIONS(886), 1, + ACTIONS(986), 1, anon_sym_not, - ACTIONS(890), 1, + ACTIONS(990), 1, anon_sym_, - ACTIONS(892), 1, + ACTIONS(992), 1, anon_sym_DQUOTE, - ACTIONS(896), 1, - sym_string_start, - STATE(238), 1, + STATE(218), 1, aux_sym_long_expression_repeat1, - STATE(341), 1, - sym_expression, - STATE(394), 1, + STATE(1526), 1, sym_primary_expression, - STATE(614), 1, + STATE(1564), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2453), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(876), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(888), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30823,7 +30254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30831,7 +30262,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30839,72 +30269,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10805] = 25, - ACTIONS(874), 1, + [12681] = 25, + ACTIONS(9), 1, sym_identifier, - ACTIONS(878), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(980), 1, anon_sym_LPAREN, - ACTIONS(880), 1, + ACTIONS(982), 1, anon_sym_LBRACK, - ACTIONS(882), 1, - anon_sym_lambda, - ACTIONS(884), 1, + ACTIONS(984), 1, anon_sym_LBRACE, - ACTIONS(886), 1, - anon_sym_not, - ACTIONS(892), 1, + ACTIONS(992), 1, anon_sym_DQUOTE, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1117), 1, + ACTIONS(1066), 1, anon_sym_, - STATE(194), 1, + STATE(332), 1, aux_sym_long_expression_repeat1, - STATE(310), 1, - sym_expression, - STATE(394), 1, + STATE(1454), 1, sym_primary_expression, - STATE(614), 1, + STATE(1564), 1, + sym_expression, + STATE(2162), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2467), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(876), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(888), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30912,7 +30342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -30920,7 +30350,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -30928,73 +30357,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10919] = 26, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [12794] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1046), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1048), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1052), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1058), 1, + anon_sym_, + ACTIONS(1060), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + STATE(201), 1, sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2396), 1, + STATE(249), 1, + aux_sym_long_expression_repeat1, + STATE(328), 1, sym_expression, - STATE(2496), 1, + STATE(1063), 1, + sym_selector_expression, + STATE(2443), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2930), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1119), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(1044), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1056), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1062), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31002,7 +30430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -31010,7 +30438,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -31018,163 +30445,208 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11035] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [12907] = 5, + ACTIONS(930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1070), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1121), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_primary_expression, - STATE(2233), 1, - sym_selector_expression, - STATE(2414), 1, - sym_expression, - STATE(2499), 1, - sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, - sym_quant_op, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1068), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [12980] = 5, + ACTIONS(930), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, - anon_sym_PLUS, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(916), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(918), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(786), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1972), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [11153] = 25, - ACTIONS(874), 1, + [13053] = 25, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(978), 1, sym_identifier, - ACTIONS(878), 1, + ACTIONS(980), 1, anon_sym_LPAREN, - ACTIONS(880), 1, + ACTIONS(982), 1, anon_sym_LBRACK, - ACTIONS(882), 1, - anon_sym_lambda, - ACTIONS(884), 1, + ACTIONS(984), 1, anon_sym_LBRACE, - ACTIONS(886), 1, + ACTIONS(986), 1, anon_sym_not, - ACTIONS(890), 1, + ACTIONS(990), 1, anon_sym_, - ACTIONS(892), 1, + ACTIONS(992), 1, anon_sym_DQUOTE, - ACTIONS(896), 1, - sym_string_start, - STATE(238), 1, + STATE(218), 1, aux_sym_long_expression_repeat1, - STATE(341), 1, - sym_expression, - STATE(394), 1, + STATE(1526), 1, sym_primary_expression, - STATE(614), 1, + STATE(1564), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2453), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(876), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(888), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(988), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31182,7 +30654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -31190,7 +30662,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -31198,74 +30669,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11267] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [13166] = 5, + ACTIONS(930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1074), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(523), 1, - anon_sym_STAR, - ACTIONS(525), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(539), 1, + ACTIONS(1072), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [13239] = 25, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(800), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(994), 1, sym_identifier, - STATE(1462), 1, + ACTIONS(996), 1, + anon_sym_LPAREN, + ACTIONS(998), 1, + anon_sym_LBRACK, + ACTIONS(1000), 1, + anon_sym_LBRACE, + ACTIONS(1006), 1, + anon_sym_DQUOTE, + ACTIONS(1076), 1, + anon_sym_, + STATE(354), 1, + aux_sym_long_expression_repeat1, + STATE(1644), 1, sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2389), 1, + STATE(1684), 1, sym_expression, - STATE(2496), 1, + STATE(2179), 1, + sym_selector_expression, + STATE(2369), 1, sym_dotted_name, - STATE(2934), 1, - sym_list_splat, - STATE(3087), 1, + STATE(3125), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(774), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1002), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(796), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31273,7 +30810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -31281,7 +30818,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -31289,74 +30825,208 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11385] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [13352] = 6, + ACTIONS(928), 1, + anon_sym_and, + ACTIONS(930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1080), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1078), 31, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(784), 1, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [13427] = 4, + ACTIONS(1086), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(788), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(790), 1, + ACTIONS(1082), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [13498] = 25, + ACTIONS(445), 1, + anon_sym_LPAREN, + ACTIONS(447), 1, + anon_sym_LBRACK, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(451), 1, + anon_sym_LBRACE, + ACTIONS(459), 1, + anon_sym_DQUOTE, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1123), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1088), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + ACTIONS(1092), 1, + anon_sym_, + STATE(240), 1, + aux_sym_long_expression_repeat1, + STATE(1140), 1, + sym_expression, + STATE(1378), 1, sym_primary_expression, - STATE(2233), 1, + STATE(1418), 1, sym_selector_expression, - STATE(2414), 1, - sym_expression, - STATE(2499), 1, + STATE(2395), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(441), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(457), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31364,7 +31034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -31372,7 +31042,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -31380,74 +31049,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11503] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [13611] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1125), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1088), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + ACTIONS(1094), 1, + anon_sym_, + STATE(354), 1, + aux_sym_long_expression_repeat1, + STATE(1145), 1, + sym_expression, + STATE(1378), 1, sym_primary_expression, - STATE(2233), 1, + STATE(1418), 1, sym_selector_expression, - STATE(2414), 1, - sym_expression, - STATE(2499), 1, + STATE(2395), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(441), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(457), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31455,7 +31122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -31463,7 +31130,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -31471,74 +31137,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11621] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [13724] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(1088), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1462), 1, + ACTIONS(1090), 1, + anon_sym_not, + ACTIONS(1092), 1, + anon_sym_, + STATE(240), 1, + aux_sym_long_expression_repeat1, + STATE(1140), 1, + sym_expression, + STATE(1378), 1, sym_primary_expression, - STATE(2213), 1, + STATE(1418), 1, sym_selector_expression, - STATE(2293), 1, - sym_expression, - STATE(2496), 1, + STATE(2395), 1, sym_dotted_name, - STATE(2812), 1, - sym_slice, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(441), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(457), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31546,7 +31210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -31554,7 +31218,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -31562,72 +31225,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11739] = 25, - ACTIONS(455), 1, + [13837] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1127), 1, + ACTIONS(1088), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1090), 1, anon_sym_not, - ACTIONS(1133), 1, + ACTIONS(1092), 1, anon_sym_, - STATE(250), 1, + STATE(240), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, + STATE(1140), 1, sym_expression, - STATE(2040), 1, + STATE(1378), 1, sym_primary_expression, - STATE(2046), 1, + STATE(1418), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2395), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1131), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(457), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31635,7 +31298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -31643,7 +31306,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -31651,74 +31313,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11853] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [13950] = 25, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(998), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(1006), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1135), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1096), 1, + sym_identifier, + ACTIONS(1098), 1, + anon_sym_not, + ACTIONS(1100), 1, + anon_sym_, + STATE(245), 1, + aux_sym_long_expression_repeat1, + STATE(1670), 1, sym_primary_expression, - STATE(2233), 1, - sym_selector_expression, - STATE(2414), 1, + STATE(1677), 1, sym_expression, - STATE(2499), 1, + STATE(1892), 1, + sym_selector_expression, + STATE(2379), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3125), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(774), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1002), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(796), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31726,7 +31386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -31734,7 +31394,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -31742,74 +31401,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11971] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, + [14063] = 25, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1462), 1, + ACTIONS(996), 1, + anon_sym_LPAREN, + ACTIONS(998), 1, + anon_sym_LBRACK, + ACTIONS(1000), 1, + anon_sym_LBRACE, + ACTIONS(1004), 1, + anon_sym_, + ACTIONS(1006), 1, + anon_sym_DQUOTE, + STATE(236), 1, + aux_sym_long_expression_repeat1, + STATE(1644), 1, sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2288), 1, + STATE(1677), 1, sym_expression, - STATE(2496), 1, + STATE(2179), 1, + sym_selector_expression, + STATE(2369), 1, sym_dotted_name, - STATE(2755), 1, - sym_slice, - STATE(3087), 1, + STATE(3125), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(774), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1002), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(796), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31817,7 +31474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -31825,7 +31482,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -31833,72 +31489,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12089] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, + [14176] = 25, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(1053), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(998), 1, anon_sym_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(1065), 1, + ACTIONS(1006), 1, anon_sym_DQUOTE, - ACTIONS(1113), 1, + ACTIONS(1096), 1, + sym_identifier, + ACTIONS(1098), 1, + anon_sym_not, + ACTIONS(1102), 1, anon_sym_, - STATE(295), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1511), 1, - sym_expression, - STATE(1604), 1, + STATE(1670), 1, sym_primary_expression, - STATE(2230), 1, + STATE(1684), 1, + sym_expression, + STATE(1892), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2379), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(774), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(1061), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1002), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(796), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31906,7 +31562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -31914,7 +31570,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -31922,72 +31577,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12203] = 25, - ACTIONS(455), 1, + [14289] = 25, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(998), 1, anon_sym_LBRACK, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(1006), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(1127), 1, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1098), 1, anon_sym_not, - ACTIONS(1137), 1, + ACTIONS(1100), 1, anon_sym_, - STATE(194), 1, + STATE(245), 1, aux_sym_long_expression_repeat1, - STATE(1176), 1, - sym_expression, - STATE(2040), 1, + STATE(1670), 1, sym_primary_expression, - STATE(2046), 1, + STATE(1677), 1, + sym_expression, + STATE(1892), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2379), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(774), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1131), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1002), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(796), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31995,7 +31650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32003,7 +31658,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32011,74 +31665,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12317] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [14402] = 25, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(998), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1006), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1462), 1, + ACTIONS(1098), 1, + anon_sym_not, + ACTIONS(1100), 1, + anon_sym_, + STATE(245), 1, + aux_sym_long_expression_repeat1, + STATE(1670), 1, sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2303), 1, + STATE(1677), 1, sym_expression, - STATE(2496), 1, + STATE(1892), 1, + sym_selector_expression, + STATE(2379), 1, sym_dotted_name, - STATE(2821), 1, - sym_slice, - STATE(3087), 1, + STATE(3125), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(774), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1002), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(796), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32086,7 +31738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32094,7 +31746,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32102,73 +31753,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12435] = 26, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, + [14515] = 25, ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, + anon_sym_LBRACK, + ACTIONS(962), 1, + anon_sym_LBRACE, + ACTIONS(968), 1, + anon_sym_DQUOTE, + ACTIONS(1104), 1, sym_identifier, - STATE(1462), 1, + ACTIONS(1106), 1, + anon_sym_not, + ACTIONS(1108), 1, + anon_sym_, + STATE(251), 1, + aux_sym_long_expression_repeat1, + STATE(1412), 1, sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2390), 1, + STATE(1452), 1, sym_expression, - STATE(2496), 1, + STATE(1521), 1, + sym_selector_expression, + STATE(2391), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1139), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(507), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(535), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32176,7 +31826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32184,7 +31834,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32192,74 +31841,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12551] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [14628] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1046), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1048), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1052), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1060), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1462), 1, + ACTIONS(1110), 1, + anon_sym_, + STATE(201), 1, sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2344), 1, + STATE(321), 1, sym_expression, - STATE(2496), 1, + STATE(354), 1, + aux_sym_long_expression_repeat1, + STATE(1063), 1, + sym_selector_expression, + STATE(2443), 1, sym_dotted_name, - STATE(2929), 1, - sym_slice, - STATE(3087), 1, + STATE(2930), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(1044), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1056), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1062), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32267,7 +31914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32275,7 +31922,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32283,74 +31929,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12669] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [14741] = 5, + ACTIONS(922), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1070), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, + ACTIONS(1068), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [14814] = 25, + ACTIONS(517), 1, + anon_sym_lambda, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(958), 1, + anon_sym_LPAREN, + ACTIONS(960), 1, + anon_sym_LBRACK, + ACTIONS(962), 1, + anon_sym_LBRACE, + ACTIONS(968), 1, + anon_sym_DQUOTE, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1462), 1, + ACTIONS(1106), 1, + anon_sym_not, + ACTIONS(1112), 1, + anon_sym_, + STATE(354), 1, + aux_sym_long_expression_repeat1, + STATE(1405), 1, + sym_expression, + STATE(1412), 1, sym_primary_expression, - STATE(2213), 1, + STATE(1521), 1, sym_selector_expression, - STATE(2298), 1, - sym_expression, - STATE(2496), 1, + STATE(2391), 1, sym_dotted_name, - STATE(2892), 1, - sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(507), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(535), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32358,7 +32070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32366,7 +32078,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32374,163 +32085,208 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12787] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [14927] = 5, + ACTIONS(922), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(916), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1462), 1, - sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2304), 1, - sym_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(2835), 1, - sym_slice, - STATE(3087), 1, - sym_quant_op, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(918), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [15000] = 5, + ACTIONS(922), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, - anon_sym_PLUS, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1074), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1072), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1673), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [12905] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, + [15073] = 25, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1053), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(960), 1, anon_sym_LBRACK, - ACTIONS(1057), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - ACTIONS(1065), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(1113), 1, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_not, + ACTIONS(1108), 1, anon_sym_, - STATE(295), 1, + STATE(251), 1, aux_sym_long_expression_repeat1, - STATE(1511), 1, - sym_expression, - STATE(1604), 1, + STATE(1412), 1, sym_primary_expression, - STATE(2230), 1, + STATE(1452), 1, + sym_expression, + STATE(1521), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2391), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(1061), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32538,7 +32294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32546,7 +32302,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32554,72 +32309,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13019] = 25, - ACTIONS(455), 1, + [15186] = 25, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(960), 1, anon_sym_LBRACK, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(962), 1, anon_sym_LBRACE, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(545), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1141), 1, + ACTIONS(1106), 1, + anon_sym_not, + ACTIONS(1108), 1, anon_sym_, - STATE(258), 1, + STATE(251), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1393), 1, + STATE(1412), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1452), 1, + sym_expression, + STATE(1521), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2391), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(465), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32627,7 +32382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32635,7 +32390,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32643,72 +32397,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13133] = 25, - ACTIONS(455), 1, + [15299] = 25, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(467), 1, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1143), 1, + ACTIONS(1116), 1, + anon_sym_not, + ACTIONS(1118), 1, anon_sym_, - STATE(194), 1, + STATE(257), 1, aux_sym_long_expression_repeat1, - STATE(1176), 1, - sym_expression, - STATE(1393), 1, + STATE(1150), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1152), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2417), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(465), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32716,7 +32470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32724,7 +32478,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32732,72 +32485,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13247] = 25, - ACTIONS(455), 1, + [15412] = 25, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1127), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1116), 1, anon_sym_not, - ACTIONS(1133), 1, + ACTIONS(1120), 1, anon_sym_, - STATE(250), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(2040), 1, + STATE(1150), 1, sym_primary_expression, - STATE(2046), 1, + STATE(1191), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2417), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1131), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32805,7 +32558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32813,7 +32566,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32821,72 +32573,157 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13361] = 25, - ACTIONS(455), 1, + [15525] = 22, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, + anon_sym_QMARK_DOT, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(902), 1, + anon_sym_PIPE, + ACTIONS(904), 1, + anon_sym_AMP, + ACTIONS(906), 1, + anon_sym_CARET, + ACTIONS(912), 1, + anon_sym_is, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(890), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(898), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(900), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(888), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(910), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(880), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1124), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1122), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [15632] = 25, + ACTIONS(407), 1, + anon_sym_LPAREN, + ACTIONS(409), 1, + anon_sym_LBRACK, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1127), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1116), 1, anon_sym_not, - ACTIONS(1133), 1, + ACTIONS(1118), 1, anon_sym_, - STATE(250), 1, + STATE(257), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(2040), 1, + STATE(1150), 1, sym_primary_expression, - STATE(2046), 1, + STATE(1152), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2417), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1131), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32894,7 +32731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32902,7 +32739,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32910,72 +32746,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13475] = 25, - ACTIONS(878), 1, + [15745] = 25, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(880), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(884), 1, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(892), 1, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(896), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1145), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1147), 1, + ACTIONS(1116), 1, anon_sym_not, - ACTIONS(1149), 1, + ACTIONS(1118), 1, anon_sym_, - STATE(265), 1, + STATE(257), 1, aux_sym_long_expression_repeat1, - STATE(316), 1, + STATE(1150), 1, sym_primary_expression, - STATE(341), 1, + STATE(1152), 1, sym_expression, - STATE(1090), 1, + STATE(1276), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2417), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(876), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(888), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32983,7 +32819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -32991,7 +32827,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -32999,72 +32834,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13589] = 25, - ACTIONS(878), 1, + [15858] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(880), 1, + ACTIONS(1132), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(884), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(892), 1, - anon_sym_DQUOTE, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1145), 1, - sym_identifier, - ACTIONS(1147), 1, + ACTIONS(1138), 1, anon_sym_not, - ACTIONS(1149), 1, + ACTIONS(1142), 1, anon_sym_, - STATE(265), 1, + ACTIONS(1144), 1, + anon_sym_DQUOTE, + ACTIONS(1148), 1, + sym_string_start, + STATE(262), 1, aux_sym_long_expression_repeat1, - STATE(316), 1, + STATE(1453), 1, sym_primary_expression, - STATE(341), 1, + STATE(1555), 1, sym_expression, - STATE(1090), 1, + STATE(1645), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2424), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(876), 2, + ACTIONS(1128), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(888), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1140), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 6, + ACTIONS(1146), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33072,7 +32907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33080,7 +32915,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33088,72 +32922,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13703] = 25, - ACTIONS(455), 1, + [15971] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(1132), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(463), 1, + ACTIONS(1138), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(1141), 1, + ACTIONS(1150), 1, anon_sym_, - STATE(258), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1393), 1, + STATE(1453), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1542), 1, + sym_expression, + STATE(1645), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2424), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(1128), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(465), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1140), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(1146), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33161,7 +32995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33169,7 +33003,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33177,72 +33010,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13817] = 25, - ACTIONS(455), 1, + [16084] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(1132), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(463), 1, + ACTIONS(1138), 1, anon_sym_not, - ACTIONS(467), 1, + ACTIONS(1142), 1, + anon_sym_, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(1141), 1, - anon_sym_, - STATE(258), 1, + STATE(262), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1393), 1, + STATE(1453), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1555), 1, + sym_expression, + STATE(1645), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2424), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(1128), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(465), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1140), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(1146), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33250,7 +33083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33258,7 +33091,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33266,72 +33098,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13931] = 25, - ACTIONS(878), 1, + [16197] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(880), 1, + ACTIONS(1132), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(884), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(892), 1, - anon_sym_DQUOTE, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1145), 1, - sym_identifier, - ACTIONS(1147), 1, + ACTIONS(1138), 1, anon_sym_not, - ACTIONS(1151), 1, + ACTIONS(1142), 1, anon_sym_, - STATE(194), 1, + ACTIONS(1144), 1, + anon_sym_DQUOTE, + ACTIONS(1148), 1, + sym_string_start, + STATE(262), 1, aux_sym_long_expression_repeat1, - STATE(310), 1, - sym_expression, - STATE(316), 1, + STATE(1453), 1, sym_primary_expression, - STATE(1090), 1, + STATE(1555), 1, + sym_expression, + STATE(1645), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2424), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(876), 2, + ACTIONS(1128), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(888), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1140), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 6, + ACTIONS(1146), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33339,7 +33171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33347,7 +33179,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33355,74 +33186,157 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14045] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [16310] = 22, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(896), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(902), 1, + anon_sym_PIPE, + ACTIONS(904), 1, + anon_sym_AMP, + ACTIONS(906), 1, + anon_sym_CARET, + ACTIONS(912), 1, + anon_sym_is, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(890), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(898), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(900), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(888), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(910), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(880), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1154), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(788), 1, + anon_sym_TILDE, sym_float, - ACTIONS(790), 1, + ACTIONS(1152), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [16417] = 25, + ACTIONS(445), 1, + anon_sym_LPAREN, + ACTIONS(447), 1, + anon_sym_LBRACK, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(451), 1, + anon_sym_LBRACE, + ACTIONS(459), 1, + anon_sym_DQUOTE, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1153), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_not, + ACTIONS(1016), 1, + anon_sym_, + STATE(309), 1, + aux_sym_long_expression_repeat1, + STATE(1140), 1, + sym_expression, + STATE(1554), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2176), 1, sym_selector_expression, STATE(2414), 1, - sym_expression, - STATE(2499), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(441), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1014), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33430,7 +33344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33438,7 +33352,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33446,72 +33359,224 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14163] = 25, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(780), 1, + [16530] = 21, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_LBRACK, + ACTIONS(1164), 1, + anon_sym_STAR_STAR, + ACTIONS(1166), 1, + anon_sym_QMARK_DOT, + ACTIONS(1168), 1, anon_sym_not, - ACTIONS(790), 1, + ACTIONS(1174), 1, + anon_sym_PIPE, + ACTIONS(1176), 1, + anon_sym_AMP, + ACTIONS(1178), 1, + anon_sym_CARET, + ACTIONS(1184), 1, + anon_sym_is, + ACTIONS(1186), 1, + anon_sym_QMARK_LBRACK, + STATE(422), 1, + aux_sym_comparison_operator_repeat1, + STATE(709), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1172), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1160), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1182), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 8, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(880), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [16635] = 5, + ACTIONS(1192), 1, + anon_sym_PIPE, + STATE(268), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1190), 25, + sym__dedent, sym_string_start, - ACTIONS(1027), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1188), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [16708] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(1029), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(1155), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1195), 1, anon_sym_, - STATE(268), 1, + STATE(285), 1, aux_sym_long_expression_repeat1, - STATE(1642), 1, - sym_primary_expression, - STATE(1814), 1, + STATE(1140), 1, sym_expression, - STATE(2233), 1, + STATE(1360), 1, + sym_primary_expression, + STATE(2154), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(764), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(1035), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(457), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33519,7 +33584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33527,7 +33592,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33535,72 +33599,144 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14277] = 25, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(790), 1, + [16821] = 9, + ACTIONS(920), 1, + anon_sym_and, + ACTIONS(922), 1, + anon_sym_PLUS, + ACTIONS(1201), 1, + anon_sym_DOT, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1205), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1197), 24, sym_string_start, - ACTIONS(1027), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1029), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(1155), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1199), 29, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [16902] = 25, + ACTIONS(1207), 1, sym_identifier, - ACTIONS(1159), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN, + ACTIONS(1211), 1, + anon_sym_LBRACK, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1215), 1, + anon_sym_LBRACE, + ACTIONS(1217), 1, + anon_sym_not, + ACTIONS(1221), 1, anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1642), 1, + ACTIONS(1223), 1, + anon_sym_DQUOTE, + ACTIONS(1227), 1, + sym_string_start, + STATE(267), 1, sym_primary_expression, - STATE(1669), 1, + STATE(275), 1, + aux_sym_long_expression_repeat1, + STATE(382), 1, sym_expression, - STATE(2233), 1, + STATE(418), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2426), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(764), 2, + ACTIONS(1201), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(1035), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 6, + ACTIONS(1225), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33608,7 +33744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33616,7 +33752,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33624,72 +33759,139 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14391] = 25, - ACTIONS(774), 1, + [17015] = 4, + ACTIONS(1233), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1231), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1229), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(780), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1027), 1, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [17086] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(1029), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(1155), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1195), 1, anon_sym_, - STATE(268), 1, + STATE(285), 1, aux_sym_long_expression_repeat1, - STATE(1642), 1, - sym_primary_expression, - STATE(1814), 1, + STATE(1140), 1, sym_expression, - STATE(2233), 1, + STATE(1360), 1, + sym_primary_expression, + STATE(2154), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(764), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(1035), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(457), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33697,7 +33899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33705,7 +33907,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33713,72 +33914,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14505] = 25, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1027), 1, + [17199] = 25, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(1029), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(1031), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(1155), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1237), 1, anon_sym_, - STATE(268), 1, + STATE(299), 1, aux_sym_long_expression_repeat1, - STATE(1642), 1, - sym_primary_expression, - STATE(1814), 1, + STATE(1152), 1, sym_expression, - STATE(2233), 1, + STATE(1195), 1, + sym_primary_expression, + STATE(2116), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(764), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(1035), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33786,7 +33987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33794,7 +33995,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33802,72 +34002,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14619] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, + [17312] = 25, + ACTIONS(1207), 1, sym_identifier, - ACTIONS(1009), 1, + ACTIONS(1209), 1, anon_sym_LPAREN, - ACTIONS(1011), 1, + ACTIONS(1211), 1, anon_sym_LBRACK, - ACTIONS(1013), 1, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1215), 1, anon_sym_LBRACE, - ACTIONS(1021), 1, + ACTIONS(1217), 1, + anon_sym_not, + ACTIONS(1223), 1, anon_sym_DQUOTE, - ACTIONS(1161), 1, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1239), 1, anon_sym_, - STATE(272), 1, - aux_sym_long_expression_repeat1, - STATE(1462), 1, + STATE(267), 1, sym_primary_expression, - STATE(1465), 1, + STATE(354), 1, + aux_sym_long_expression_repeat1, + STATE(388), 1, sym_expression, - STATE(2213), 1, + STATE(418), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2426), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(1201), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(1017), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(1225), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33875,7 +34075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33883,7 +34083,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33891,72 +34090,222 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14733] = 25, - ACTIONS(517), 1, + [17425] = 13, + ACTIONS(884), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_LBRACK, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, + anon_sym_QMARK_DOT, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(890), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(898), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(900), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(944), 17, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(527), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1009), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [17514] = 11, + ACTIONS(920), 1, + anon_sym_and, + ACTIONS(922), 1, + anon_sym_PLUS, + ACTIONS(1201), 1, + anon_sym_DOT, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1205), 1, + anon_sym_or, + ACTIONS(1245), 1, + anon_sym_as, + ACTIONS(1247), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1241), 24, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1011), 1, anon_sym_LBRACK, - ACTIONS(1013), 1, anon_sym_LBRACE, - ACTIONS(1021), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(1163), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1243), 27, + anon_sym_import, + anon_sym_assert, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [17599] = 25, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1209), 1, + anon_sym_LPAREN, + ACTIONS(1211), 1, + anon_sym_LBRACK, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1215), 1, + anon_sym_LBRACE, + ACTIONS(1217), 1, + anon_sym_not, + ACTIONS(1221), 1, anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1462), 1, + ACTIONS(1223), 1, + anon_sym_DQUOTE, + ACTIONS(1227), 1, + sym_string_start, + STATE(267), 1, sym_primary_expression, - STATE(1469), 1, + STATE(275), 1, + aux_sym_long_expression_repeat1, + STATE(382), 1, sym_expression, - STATE(2213), 1, + STATE(418), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2426), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(1201), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(1017), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(1225), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33964,7 +34313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -33972,7 +34321,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -33980,72 +34328,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14847] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, + [17712] = 25, + ACTIONS(1207), 1, sym_identifier, - ACTIONS(1009), 1, + ACTIONS(1209), 1, anon_sym_LPAREN, - ACTIONS(1011), 1, + ACTIONS(1211), 1, anon_sym_LBRACK, - ACTIONS(1013), 1, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1215), 1, anon_sym_LBRACE, - ACTIONS(1021), 1, - anon_sym_DQUOTE, - ACTIONS(1161), 1, + ACTIONS(1217), 1, + anon_sym_not, + ACTIONS(1221), 1, anon_sym_, - STATE(272), 1, - aux_sym_long_expression_repeat1, - STATE(1462), 1, + ACTIONS(1223), 1, + anon_sym_DQUOTE, + ACTIONS(1227), 1, + sym_string_start, + STATE(267), 1, sym_primary_expression, - STATE(1465), 1, + STATE(275), 1, + aux_sym_long_expression_repeat1, + STATE(382), 1, sym_expression, - STATE(2213), 1, + STATE(418), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2426), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(1201), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(1017), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1219), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(1225), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34053,7 +34401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -34061,7 +34409,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -34069,72 +34416,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14961] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(1009), 1, + [17825] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(1011), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(1013), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(1021), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(1161), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(1249), 1, + sym_identifier, + ACTIONS(1251), 1, + anon_sym_not, + ACTIONS(1253), 1, anon_sym_, - STATE(272), 1, + STATE(281), 1, aux_sym_long_expression_repeat1, - STATE(1462), 1, - sym_primary_expression, - STATE(1465), 1, + STATE(1140), 1, sym_expression, - STATE(2213), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1626), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2429), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(1017), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1014), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34142,7 +34489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -34150,7 +34497,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -34158,72 +34504,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15075] = 25, - ACTIONS(407), 1, + [17938] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(423), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1249), 1, sym_identifier, - ACTIONS(1167), 1, + ACTIONS(1251), 1, + anon_sym_not, + ACTIONS(1255), 1, anon_sym_, - STATE(276), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1183), 1, - sym_primary_expression, - STATE(1200), 1, + STATE(1145), 1, sym_expression, - STATE(2153), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1626), 1, sym_selector_expression, - STATE(2532), 1, + STATE(2429), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(421), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1014), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34231,7 +34577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -34239,7 +34585,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -34247,72 +34592,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15189] = 25, - ACTIONS(407), 1, + [18051] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(423), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1249), 1, sym_identifier, - ACTIONS(1169), 1, + ACTIONS(1251), 1, + anon_sym_not, + ACTIONS(1253), 1, anon_sym_, - STATE(194), 1, + STATE(281), 1, aux_sym_long_expression_repeat1, - STATE(1183), 1, - sym_primary_expression, - STATE(1206), 1, + STATE(1140), 1, sym_expression, - STATE(2153), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1626), 1, sym_selector_expression, - STATE(2532), 1, + STATE(2429), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(421), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1014), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34320,7 +34665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -34328,7 +34673,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -34336,72 +34680,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15303] = 25, - ACTIONS(878), 1, + [18164] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(880), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(884), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(892), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(896), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1145), 1, + ACTIONS(1249), 1, sym_identifier, - ACTIONS(1147), 1, + ACTIONS(1251), 1, anon_sym_not, - ACTIONS(1149), 1, + ACTIONS(1253), 1, anon_sym_, - STATE(265), 1, + STATE(281), 1, aux_sym_long_expression_repeat1, - STATE(316), 1, - sym_primary_expression, - STATE(341), 1, + STATE(1140), 1, sym_expression, - STATE(1090), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1626), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2429), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(876), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(888), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1014), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34409,7 +34753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -34417,7 +34761,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -34425,163 +34768,149 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15417] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [18277] = 14, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - ACTIONS(740), 1, - anon_sym_COLON, - STATE(1462), 1, - sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2291), 1, - sym_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(2737), 1, - sym_slice, - STATE(3087), 1, - sym_quant_op, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(890), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(898), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(900), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 15, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1673), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [15535] = 25, - ACTIONS(407), 1, + [18368] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(423), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1167), 1, + ACTIONS(1257), 1, anon_sym_, - STATE(276), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1183), 1, - sym_primary_expression, - STATE(1200), 1, + STATE(1145), 1, sym_expression, - STATE(2153), 1, + STATE(1360), 1, + sym_primary_expression, + STATE(2154), 1, sym_selector_expression, - STATE(2532), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(421), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(457), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34589,7 +34918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -34597,7 +34926,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -34605,72 +34933,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15649] = 25, - ACTIONS(407), 1, + [18481] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(419), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(423), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1167), 1, - anon_sym_, - STATE(276), 1, - aux_sym_long_expression_repeat1, - STATE(1183), 1, + ACTIONS(748), 1, + anon_sym_COLON, + STATE(1441), 1, sym_primary_expression, - STATE(1200), 1, - sym_expression, - STATE(2153), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2532), 1, + STATE(2231), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2805), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(421), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34678,7 +35008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -34686,7 +35016,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -34694,72 +35023,223 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15763] = 25, - ACTIONS(1093), 1, + [18598] = 4, + STATE(268), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1261), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1095), 1, anon_sym_LBRACK, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1099), 1, anon_sym_LBRACE, - ACTIONS(1107), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1111), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1259), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [18669] = 21, + ACTIONS(884), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_LBRACK, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, + anon_sym_QMARK_DOT, + ACTIONS(902), 1, + anon_sym_PIPE, + ACTIONS(904), 1, + anon_sym_AMP, + ACTIONS(906), 1, + anon_sym_CARET, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(952), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_is, + STATE(431), 1, + aux_sym_comparison_operator_repeat1, + STATE(445), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(890), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(898), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(900), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(950), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(954), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 8, + sym__dedent, sym_string_start, - ACTIONS(1171), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(880), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + sym_integer, sym_identifier, - ACTIONS(1173), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [18774] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1269), 1, + anon_sym_LBRACK, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(1275), 1, anon_sym_not, - ACTIONS(1175), 1, + ACTIONS(1279), 1, anon_sym_, + ACTIONS(1281), 1, + anon_sym_DQUOTE, + ACTIONS(1285), 1, + sym_string_start, STATE(290), 1, aux_sym_long_expression_repeat1, - STATE(1033), 1, - sym_expression, - STATE(1044), 1, + STATE(1019), 1, sym_primary_expression, - STATE(1207), 1, + STATE(1038), 1, + sym_expression, + STATE(1054), 1, sym_selector_expression, - STATE(2461), 1, + STATE(2437), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1091), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1103), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1277), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 6, + ACTIONS(1283), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34767,7 +35247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -34775,7 +35255,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -34783,72 +35262,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15877] = 25, - ACTIONS(975), 1, + [18887] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(981), 1, + ACTIONS(1273), 1, anon_sym_LBRACE, - ACTIONS(989), 1, + ACTIONS(1275), 1, + anon_sym_not, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(993), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(1177), 1, - sym_identifier, - ACTIONS(1179), 1, - anon_sym_not, - ACTIONS(1181), 1, + ACTIONS(1287), 1, anon_sym_, - STATE(283), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1544), 1, + STATE(1019), 1, sym_primary_expression, - STATE(1615), 1, + STATE(1032), 1, sym_expression, - STATE(2219), 1, + STATE(1054), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2437), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(985), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1277), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 6, + ACTIONS(1283), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34856,7 +35335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -34864,7 +35343,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -34872,72 +35350,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15991] = 25, - ACTIONS(975), 1, + [19000] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(981), 1, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(989), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(993), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1177), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1179), 1, - anon_sym_not, - ACTIONS(1183), 1, + ACTIONS(1195), 1, anon_sym_, - STATE(194), 1, + STATE(285), 1, aux_sym_long_expression_repeat1, - STATE(1544), 1, - sym_primary_expression, - STATE(1618), 1, + STATE(1140), 1, sym_expression, - STATE(2219), 1, + STATE(1360), 1, + sym_primary_expression, + STATE(2154), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3070), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(985), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(457), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34945,7 +35423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -34953,7 +35431,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -34961,72 +35438,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16105] = 25, - ACTIONS(1093), 1, + [19113] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1095), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(1097), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(1099), 1, + ACTIONS(1273), 1, anon_sym_LBRACE, - ACTIONS(1107), 1, - anon_sym_DQUOTE, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1173), 1, + ACTIONS(1275), 1, anon_sym_not, - ACTIONS(1175), 1, + ACTIONS(1279), 1, anon_sym_, + ACTIONS(1281), 1, + anon_sym_DQUOTE, + ACTIONS(1285), 1, + sym_string_start, STATE(290), 1, aux_sym_long_expression_repeat1, - STATE(1033), 1, - sym_expression, - STATE(1044), 1, + STATE(1019), 1, sym_primary_expression, - STATE(1207), 1, + STATE(1038), 1, + sym_expression, + STATE(1054), 1, sym_selector_expression, - STATE(2461), 1, + STATE(2437), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1091), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1103), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1277), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 6, + ACTIONS(1283), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35034,7 +35511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -35042,7 +35519,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -35050,72 +35526,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16219] = 25, - ACTIONS(975), 1, + [19226] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(981), 1, + ACTIONS(1273), 1, anon_sym_LBRACE, - ACTIONS(989), 1, - anon_sym_DQUOTE, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1177), 1, - sym_identifier, - ACTIONS(1179), 1, + ACTIONS(1275), 1, anon_sym_not, - ACTIONS(1181), 1, + ACTIONS(1279), 1, anon_sym_, - STATE(283), 1, + ACTIONS(1281), 1, + anon_sym_DQUOTE, + ACTIONS(1285), 1, + sym_string_start, + STATE(290), 1, aux_sym_long_expression_repeat1, - STATE(1544), 1, + STATE(1019), 1, sym_primary_expression, - STATE(1615), 1, + STATE(1038), 1, sym_expression, - STATE(2219), 1, + STATE(1054), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2437), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(985), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1277), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 6, + ACTIONS(1283), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35123,7 +35599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -35131,7 +35607,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -35139,74 +35614,222 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16333] = 27, - ACTIONS(762), 1, + [19339] = 15, + ACTIONS(884), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_LBRACK, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, + anon_sym_QMARK_DOT, + ACTIONS(906), 1, + anon_sym_CARET, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(890), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(898), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(900), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 14, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(764), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [19432] = 9, + ACTIONS(928), 1, + anon_sym_and, + ACTIONS(930), 1, + anon_sym_PLUS, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1291), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1197), 24, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(788), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(790), 1, + ACTIONS(1199), 29, + anon_sym_import, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [19513] = 25, + ACTIONS(1046), 1, + anon_sym_LPAREN, + ACTIONS(1048), 1, + anon_sym_LBRACK, + ACTIONS(1050), 1, + anon_sym_lambda, + ACTIONS(1052), 1, + anon_sym_LBRACE, + ACTIONS(1060), 1, + anon_sym_DQUOTE, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1185), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1295), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_, + STATE(288), 1, sym_primary_expression, - STATE(2233), 1, - sym_selector_expression, - STATE(2414), 1, + STATE(297), 1, + aux_sym_long_expression_repeat1, + STATE(328), 1, sym_expression, - STATE(2499), 1, + STATE(416), 1, + sym_selector_expression, + STATE(2445), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(2930), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(1044), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1056), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(1062), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35214,7 +35837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -35222,7 +35845,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -35230,72 +35852,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16451] = 25, - ACTIONS(975), 1, + [19626] = 25, + ACTIONS(1046), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(1048), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(981), 1, + ACTIONS(1052), 1, anon_sym_LBRACE, - ACTIONS(989), 1, + ACTIONS(1060), 1, anon_sym_DQUOTE, - ACTIONS(993), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1177), 1, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(1179), 1, + ACTIONS(1295), 1, anon_sym_not, - ACTIONS(1181), 1, + ACTIONS(1299), 1, anon_sym_, - STATE(283), 1, - aux_sym_long_expression_repeat1, - STATE(1544), 1, + STATE(288), 1, sym_primary_expression, - STATE(1615), 1, + STATE(321), 1, sym_expression, - STATE(2219), 1, + STATE(354), 1, + aux_sym_long_expression_repeat1, + STATE(416), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, + ACTIONS(1044), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(985), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1056), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 6, + ACTIONS(1062), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35303,7 +35925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -35311,7 +35933,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -35319,74 +35940,146 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16565] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, + [19739] = 11, + ACTIONS(928), 1, + anon_sym_and, + ACTIONS(930), 1, + anon_sym_PLUS, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1291), 1, + anon_sym_or, + ACTIONS(1301), 1, + anon_sym_as, + ACTIONS(1303), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1241), 24, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1243), 27, + anon_sym_import, + anon_sym_assert, + anon_sym_else, anon_sym_lambda, - ACTIONS(776), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [19824] = 25, + ACTIONS(407), 1, + anon_sym_LPAREN, + ACTIONS(409), 1, + anon_sym_LBRACK, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1187), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1305), 1, + anon_sym_, + STATE(354), 1, + aux_sym_long_expression_repeat1, + STATE(1191), 1, + sym_expression, + STATE(1195), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2414), 1, - sym_expression, - STATE(2499), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(401), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35394,7 +36087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -35402,7 +36095,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -35410,74 +36102,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16683] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [19937] = 25, + ACTIONS(1046), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1048), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1052), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(1060), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1189), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1295), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_, + STATE(288), 1, sym_primary_expression, - STATE(2233), 1, - sym_selector_expression, - STATE(2414), 1, + STATE(297), 1, + aux_sym_long_expression_repeat1, + STATE(328), 1, sym_expression, - STATE(2499), 1, + STATE(416), 1, + sym_selector_expression, + STATE(2445), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(2930), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(1044), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1056), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(1062), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35485,7 +36175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -35493,7 +36183,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -35501,72 +36190,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16801] = 25, - ACTIONS(1093), 1, + [20050] = 25, + ACTIONS(1046), 1, anon_sym_LPAREN, - ACTIONS(1095), 1, + ACTIONS(1048), 1, anon_sym_LBRACK, - ACTIONS(1097), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(1099), 1, + ACTIONS(1052), 1, anon_sym_LBRACE, - ACTIONS(1107), 1, + ACTIONS(1060), 1, anon_sym_DQUOTE, - ACTIONS(1111), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(1173), 1, + ACTIONS(1295), 1, anon_sym_not, - ACTIONS(1191), 1, + ACTIONS(1297), 1, anon_sym_, - STATE(194), 1, + STATE(288), 1, + sym_primary_expression, + STATE(297), 1, aux_sym_long_expression_repeat1, - STATE(1037), 1, + STATE(328), 1, sym_expression, - STATE(1044), 1, - sym_primary_expression, - STATE(1207), 1, + STATE(416), 1, sym_selector_expression, - STATE(2461), 1, + STATE(2445), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1091), 2, + ACTIONS(1044), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1103), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1056), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 6, + ACTIONS(1062), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35574,7 +36263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -35582,7 +36271,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -35590,164 +36278,366 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16915] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [20163] = 16, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(904), 1, + anon_sym_AMP, + ACTIONS(906), 1, + anon_sym_CARET, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(890), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(898), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(900), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 13, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(788), 1, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, - ACTIONS(790), 1, + ACTIONS(942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [20258] = 12, + ACTIONS(884), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_LBRACK, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, + anon_sym_QMARK_DOT, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(890), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(900), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(944), 19, + sym__dedent, sym_string_start, - ACTIONS(1193), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_primary_expression, - STATE(2233), 1, - sym_selector_expression, - STATE(2414), 1, - sym_expression, - STATE(2499), 1, - sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, - sym_quant_op, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(942), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [20345] = 10, + ACTIONS(884), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_LBRACK, + ACTIONS(892), 1, + anon_sym_STAR_STAR, + ACTIONS(894), 1, + anon_sym_QMARK_DOT, + ACTIONS(914), 1, + anon_sym_QMARK_LBRACK, + STATE(445), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(944), 21, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(942), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(786), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1972), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [17033] = 26, - ACTIONS(507), 1, + [20428] = 4, + ACTIONS(1307), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1082), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(509), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [20499] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1046), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1048), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1052), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1058), 1, + anon_sym_, + ACTIONS(1060), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + STATE(201), 1, sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2395), 1, + STATE(249), 1, + aux_sym_long_expression_repeat1, + STATE(328), 1, sym_expression, - STATE(2496), 1, + STATE(1063), 1, + sym_selector_expression, + STATE(2443), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2930), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(752), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(1044), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1056), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1062), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35755,7 +36645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -35763,7 +36653,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -35771,74 +36660,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17149] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [20612] = 25, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1195), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1237), 1, + anon_sym_, + STATE(299), 1, + aux_sym_long_expression_repeat1, + STATE(1152), 1, + sym_expression, + STATE(1195), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2414), 1, - sym_expression, - STATE(2499), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(401), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35846,7 +36733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -35854,7 +36741,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -35862,72 +36748,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17267] = 25, - ACTIONS(1093), 1, + [20725] = 25, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(1095), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1099), 1, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(1107), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(1111), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1173), 1, - anon_sym_not, - ACTIONS(1175), 1, + ACTIONS(1237), 1, anon_sym_, - STATE(290), 1, + STATE(299), 1, aux_sym_long_expression_repeat1, - STATE(1033), 1, + STATE(1152), 1, sym_expression, - STATE(1044), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1207), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2461), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1091), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1103), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35935,7 +36821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -35943,7 +36829,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -35951,72 +36836,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17381] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(1053), 1, + [20838] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(1055), 1, + ACTIONS(447), 1, anon_sym_LBRACK, - ACTIONS(1057), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(451), 1, anon_sym_LBRACE, - ACTIONS(1065), 1, + ACTIONS(459), 1, anon_sym_DQUOTE, - ACTIONS(1197), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_not, + ACTIONS(1309), 1, anon_sym_, - STATE(194), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1510), 1, + STATE(1145), 1, sym_expression, - STATE(1604), 1, + STATE(1554), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2176), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2414), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(441), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(1061), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1014), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(465), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36024,7 +36909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -36032,7 +36917,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -36040,72 +36924,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17495] = 25, - ACTIONS(455), 1, + [20951] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1199), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1203), 1, - anon_sym_, - STATE(305), 1, - aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1999), 1, + ACTIONS(748), 1, + anon_sym_COLON, + STATE(1441), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2230), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2826), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1131), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36113,7 +36999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -36121,7 +37007,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -36129,7 +37014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17609] = 27, + [21068] = 27, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -36150,42 +37035,42 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2296), 1, + STATE(2252), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2884), 1, + STATE(2723), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -36196,7 +37081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36204,7 +37089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -36212,7 +37097,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -36220,72 +37104,139 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17727] = 25, - ACTIONS(898), 1, + [21185] = 4, + ACTIONS(1315), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1313), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1311), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(902), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [21256] = 25, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(904), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(908), 1, + ACTIONS(1273), 1, anon_sym_LBRACE, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(916), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(920), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(1205), 1, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1321), 1, anon_sym_, - STATE(194), 1, + STATE(326), 1, aux_sym_long_expression_repeat1, - STATE(311), 1, + STATE(999), 1, sym_primary_expression, - STATE(318), 1, + STATE(1038), 1, sym_expression, - STATE(1144), 1, + STATE(1194), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(900), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(912), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1277), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 6, + ACTIONS(1283), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36293,7 +37244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -36301,7 +37252,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -36309,74 +37259,206 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17841] = 27, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [21369] = 4, + STATE(287), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1325), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1323), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(784), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [21440] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1329), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(788), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(790), 1, + ACTIONS(1327), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [21511] = 25, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1269), 1, + anon_sym_LBRACK, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(1281), 1, + anon_sym_DQUOTE, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(1207), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1321), 1, + anon_sym_, + STATE(326), 1, + aux_sym_long_expression_repeat1, + STATE(999), 1, sym_primary_expression, - STATE(2233), 1, - sym_selector_expression, - STATE(2414), 1, + STATE(1038), 1, sym_expression, - STATE(2499), 1, + STATE(1194), 1, + sym_selector_expression, + STATE(2421), 1, sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, + STATE(2981), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1277), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(1283), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36384,7 +37466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -36392,7 +37474,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -36400,72 +37481,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17959] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(902), 1, + [21624] = 25, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(904), 1, + ACTIONS(1132), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(908), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(914), 1, - anon_sym_, - ACTIONS(916), 1, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(920), 1, + ACTIONS(1148), 1, sym_string_start, - STATE(298), 1, + ACTIONS(1331), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_not, + ACTIONS(1335), 1, + anon_sym_, + STATE(322), 1, aux_sym_long_expression_repeat1, - STATE(311), 1, + STATE(1470), 1, sym_primary_expression, - STATE(324), 1, + STATE(1555), 1, sym_expression, - STATE(1144), 1, + STATE(2166), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2466), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(900), 2, + ACTIONS(1128), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(912), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1140), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1850), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 6, + ACTIONS(1146), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36473,7 +37554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -36481,7 +37562,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -36489,72 +37569,142 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18073] = 25, - ACTIONS(455), 1, + [21737] = 5, + ACTIONS(1337), 1, + anon_sym_PIPE, + STATE(318), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1190), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(457), 1, anon_sym_LBRACK, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_DQUOTE, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(1209), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1188), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1211), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [21810] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(1213), 1, - anon_sym_, - STATE(304), 1, - aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1538), 1, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1340), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1077), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36562,7 +37712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -36570,7 +37720,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -36578,161 +37727,206 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18187] = 25, - ACTIONS(455), 1, + [21927] = 4, + STATE(287), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1344), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(457), 1, anon_sym_LBRACK, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(1209), 1, - sym_identifier, - ACTIONS(1211), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1342), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1213), 1, - anon_sym_, - STATE(304), 1, - aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1538), 1, - sym_primary_expression, - STATE(2218), 1, - sym_selector_expression, - STATE(2475), 1, - sym_dotted_name, - STATE(3115), 1, - sym_quant_op, - ACTIONS(5), 2, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [21998] = 4, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, - anon_sym_DOT, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(876), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1077), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(874), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(471), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [18301] = 25, - ACTIONS(455), 1, + [22069] = 25, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(1132), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1199), 1, + ACTIONS(1331), 1, sym_identifier, - ACTIONS(1201), 1, + ACTIONS(1333), 1, anon_sym_not, - ACTIONS(1203), 1, + ACTIONS(1346), 1, anon_sym_, - STATE(305), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1999), 1, + STATE(1470), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1542), 1, + sym_expression, + STATE(2166), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2466), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(1128), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1131), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1140), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1850), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(1146), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36740,7 +37934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -36748,7 +37942,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -36756,161 +37949,208 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18415] = 25, - ACTIONS(455), 1, + [22182] = 4, + ACTIONS(1348), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1231), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(457), 1, anon_sym_LBRACK, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(461), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(1209), 1, - sym_identifier, - ACTIONS(1211), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1229), 34, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1215), 1, - anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1176), 1, - sym_expression, - STATE(1538), 1, - sym_primary_expression, - STATE(2218), 1, - sym_selector_expression, - STATE(2475), 1, - sym_dotted_name, - STATE(3115), 1, - sym_quant_op, - ACTIONS(5), 2, + anon_sym_and, + anon_sym_or, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [22253] = 4, + STATE(287), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, - anon_sym_DOT, + ACTIONS(1084), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1077), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1082), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(471), 6, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, - sym_float, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [18529] = 25, - ACTIONS(455), 1, + [22324] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, sym_string_start, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1217), 1, - anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1176), 1, - sym_expression, - STATE(1999), 1, + ACTIONS(1350), 1, + anon_sym_RPAREN, + STATE(1644), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1131), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(796), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36918,7 +38158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -36926,7 +38166,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -36934,72 +38173,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18643] = 25, - ACTIONS(455), 1, + [22441] = 25, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(1269), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(1273), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(1199), 1, + ACTIONS(1317), 1, sym_identifier, - ACTIONS(1201), 1, + ACTIONS(1319), 1, anon_sym_not, - ACTIONS(1203), 1, + ACTIONS(1352), 1, anon_sym_, - STATE(305), 1, + STATE(354), 1, aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1999), 1, + STATE(999), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1032), 1, + sym_expression, + STATE(1194), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, + ACTIONS(1265), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1131), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1277), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(1283), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37007,7 +38246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -37015,7 +38254,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -37023,72 +38261,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18757] = 25, - ACTIONS(455), 1, + [22554] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(457), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(459), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(461), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(467), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1209), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1211), 1, - anon_sym_not, - ACTIONS(1213), 1, - anon_sym_, - STATE(304), 1, - aux_sym_long_expression_repeat1, - STATE(1172), 1, - sym_expression, - STATE(1538), 1, + ACTIONS(748), 1, + anon_sym_COLON, + STATE(1441), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2233), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2677), 1, + sym_slice, + STATE(3110), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(453), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1077), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37096,7 +38336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -37104,7 +38344,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -37112,7 +38351,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18871] = 27, + [22671] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(195), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1356), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1354), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [22742] = 27, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -37133,42 +38439,42 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(740), 1, + ACTIONS(748), 1, anon_sym_COLON, - STATE(1462), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2284), 1, + STATE(2247), 1, sym_expression, - STATE(2496), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2841), 1, + STATE(2759), 1, sym_slice, - STATE(3087), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -37179,7 +38485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37187,7 +38493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -37195,7 +38501,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -37203,72 +38508,72 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18989] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(902), 1, + [22859] = 25, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(904), 1, + ACTIONS(1132), 1, anon_sym_LBRACK, - ACTIONS(906), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(908), 1, + ACTIONS(1136), 1, anon_sym_LBRACE, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(914), 1, - anon_sym_, - ACTIONS(916), 1, + ACTIONS(1144), 1, anon_sym_DQUOTE, - ACTIONS(920), 1, + ACTIONS(1148), 1, sym_string_start, - STATE(298), 1, + ACTIONS(1331), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_not, + ACTIONS(1335), 1, + anon_sym_, + STATE(322), 1, aux_sym_long_expression_repeat1, - STATE(311), 1, + STATE(1470), 1, sym_primary_expression, - STATE(324), 1, + STATE(1555), 1, sym_expression, - STATE(1144), 1, + STATE(2166), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2466), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(900), 2, + ACTIONS(1128), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(912), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1140), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1850), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 6, + ACTIONS(1146), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37276,7 +38581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -37284,7 +38589,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -37292,14 +38596,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [19103] = 4, + [22972] = 4, + STATE(287), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1221), 26, + ACTIONS(1190), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -37326,13 +38629,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1219), 32, + ACTIONS(1188), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -37359,301 +38663,636 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [19174] = 21, - ACTIONS(1227), 1, + [23043] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(980), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(982), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, - anon_sym_STAR_STAR, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1239), 1, - anon_sym_not, - ACTIONS(1245), 1, - anon_sym_PIPE, - ACTIONS(1247), 1, - anon_sym_AMP, - ACTIONS(1249), 1, - anon_sym_CARET, - ACTIONS(1255), 1, - anon_sym_is, - ACTIONS(1257), 1, - anon_sym_QMARK_LBRACK, - STATE(944), 1, - sym_argument_list, - STATE(1119), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(984), 1, + anon_sym_LBRACE, + ACTIONS(992), 1, + anon_sym_DQUOTE, + ACTIONS(1358), 1, + anon_sym_, + STATE(354), 1, + aux_sym_long_expression_repeat1, + STATE(1454), 1, + sym_primary_expression, + STATE(1583), 1, + sym_expression, + STATE(2162), 1, + sym_selector_expression, + STATE(2467), 1, + sym_dotted_name, + STATE(3095), 1, + sym_quant_op, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1233), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1241), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(988), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1243), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1251), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1231), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1253), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 8, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1225), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, + STATE(1877), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [19279] = 4, - STATE(347), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1259), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(1906), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1909), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23156] = 25, + ACTIONS(445), 1, anon_sym_LPAREN, + ACTIONS(447), 1, anon_sym_LBRACK, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(451), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(459), 1, + anon_sym_DQUOTE, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(976), 1, + anon_sym_, + STATE(210), 1, + aux_sym_long_expression_repeat1, + STATE(1140), 1, + sym_expression, + STATE(1945), 1, + sym_primary_expression, + STATE(2183), 1, + sym_selector_expression, + STATE(2388), 1, + sym_dotted_name, + STATE(3143), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(441), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(974), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1261), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(465), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [19350] = 5, - ACTIONS(1267), 1, - anon_sym_PIPE, - STATE(313), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1263), 25, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23269] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(980), 1, anon_sym_LPAREN, + ACTIONS(982), 1, anon_sym_LBRACK, + ACTIONS(984), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(992), 1, + anon_sym_DQUOTE, + ACTIONS(1066), 1, + anon_sym_, + STATE(332), 1, + aux_sym_long_expression_repeat1, + STATE(1454), 1, + sym_primary_expression, + STATE(1564), 1, + sym_expression, + STATE(2162), 1, + sym_selector_expression, + STATE(2467), 1, + sym_dotted_name, + STATE(3095), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(13), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(988), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1265), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1877), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [19423] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(348), 2, + STATE(1906), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1909), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1270), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23382] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, + ACTIONS(782), 1, anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(788), 1, anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1360), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23499] = 25, + ACTIONS(445), 1, + anon_sym_LPAREN, + ACTIONS(447), 1, + anon_sym_LBRACK, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(451), 1, + anon_sym_LBRACE, + ACTIONS(459), 1, anon_sym_DQUOTE, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_not, + ACTIONS(1016), 1, + anon_sym_, + STATE(309), 1, + aux_sym_long_expression_repeat1, + STATE(1140), 1, + sym_expression, + STATE(1554), 1, + sym_primary_expression, + STATE(2176), 1, + sym_selector_expression, + STATE(2414), 1, + sym_dotted_name, + STATE(3143), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(441), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1014), 3, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1832), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(465), 6, + sym_integer, sym_float, - ACTIONS(1272), 32, - anon_sym_import, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23612] = 26, + ACTIONS(507), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_LBRACK, + ACTIONS(517), 1, anon_sym_lambda, - anon_sym_in, + ACTIONS(519), 1, + anon_sym_LBRACE, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, + anon_sym_DQUOTE, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1441), 1, + sym_primary_expression, + STATE(2161), 1, + sym_selector_expression, + STATE(2347), 1, + sym_expression, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(824), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1711), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(535), 5, sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1705), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1702), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23727] = 25, + ACTIONS(1130), 1, + anon_sym_LPAREN, + ACTIONS(1132), 1, + anon_sym_LBRACK, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1136), 1, + anon_sym_LBRACE, + ACTIONS(1144), 1, + anon_sym_DQUOTE, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1331), 1, sym_identifier, + ACTIONS(1333), 1, + anon_sym_not, + ACTIONS(1335), 1, + anon_sym_, + STATE(322), 1, + aux_sym_long_expression_repeat1, + STATE(1470), 1, + sym_primary_expression, + STATE(1555), 1, + sym_expression, + STATE(2166), 1, + sym_selector_expression, + STATE(2466), 1, + sym_dotted_name, + STATE(3074), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1128), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1140), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1850), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1146), 6, + sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [19494] = 4, - ACTIONS(1278), 1, - anon_sym_DASH_GT, + STATE(1846), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1845), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23840] = 5, + ACTIONS(1366), 1, + anon_sym_EQ, + STATE(287), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 25, + ACTIONS(1364), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -37663,6 +39302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -37677,14 +39317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1276), 34, + ACTIONS(1362), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -37701,7 +39340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -37712,65 +39350,65 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [19565] = 21, - ACTIONS(1280), 1, + [23913] = 21, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(1282), 1, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(1288), 1, + ACTIONS(1164), 1, anon_sym_STAR_STAR, - ACTIONS(1290), 1, + ACTIONS(1166), 1, anon_sym_QMARK_DOT, - ACTIONS(1292), 1, + ACTIONS(1168), 1, anon_sym_not, - ACTIONS(1298), 1, + ACTIONS(1174), 1, anon_sym_PIPE, - ACTIONS(1300), 1, + ACTIONS(1176), 1, anon_sym_AMP, - ACTIONS(1302), 1, + ACTIONS(1178), 1, anon_sym_CARET, - ACTIONS(1308), 1, + ACTIONS(1184), 1, anon_sym_is, - ACTIONS(1310), 1, + ACTIONS(1186), 1, anon_sym_QMARK_LBRACK, - STATE(991), 1, + STATE(709), 1, sym_argument_list, - STATE(1114), 1, + STATE(1086), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1286), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 2, + ACTIONS(1170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1296), 2, + ACTIONS(1172), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1304), 2, + ACTIONS(1180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1284), 3, + ACTIONS(1160), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 4, + ACTIONS(1182), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 8, - sym__dedent, + ACTIONS(948), 8, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(1225), 25, + ACTIONS(880), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -37796,90 +39434,294 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [19670] = 4, - STATE(347), 1, - aux_sym_union_type_repeat1, + [24018] = 26, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_LBRACK, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, + anon_sym_LBRACE, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, + anon_sym_DQUOTE, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1441), 1, + sym_primary_expression, + STATE(2161), 1, + sym_selector_expression, + STATE(2332), 1, + sym_expression, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1312), 26, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1368), 2, anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1711), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(535), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1705), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1702), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24133] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, + ACTIONS(782), 1, anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1370), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1314), 33, - anon_sym_import, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24250] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, anon_sym_lambda, - anon_sym_in, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1372), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19741] = 4, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24367] = 6, + ACTIONS(1376), 1, + anon_sym_DOT, + ACTIONS(1381), 1, + anon_sym_QMARK_DOT, + STATE(344), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1221), 26, + ACTIONS(1379), 25, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -37897,13 +39739,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1219), 32, + ACTIONS(1374), 32, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -37930,94 +39772,207 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [19812] = 4, + [24442] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1384), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1221), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24559] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, + ACTIONS(782), 1, anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1386), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1219), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19883] = 10, - ACTIONS(1280), 1, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24676] = 10, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(1282), 1, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(1288), 1, + ACTIONS(1164), 1, anon_sym_STAR_STAR, - ACTIONS(1290), 1, + ACTIONS(1166), 1, anon_sym_QMARK_DOT, - ACTIONS(1310), 1, + ACTIONS(1186), 1, anon_sym_QMARK_LBRACK, - STATE(991), 1, + STATE(709), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1318), 21, - sym__dedent, + ACTIONS(938), 21, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, @@ -38037,7 +39992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1316), 32, + ACTIONS(936), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -38070,18 +40025,104 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [19966] = 6, - ACTIONS(1324), 1, - anon_sym_and, - ACTIONS(1326), 1, + [24759] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1388), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24876] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(365), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1320), 25, + ACTIONS(934), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -38091,6 +40132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -38107,7 +40149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1322), 31, + ACTIONS(932), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -38128,6 +40170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -38139,13 +40182,103 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [20041] = 4, - STATE(347), 1, - aux_sym_union_type_repeat1, + [24947] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_LBRACK, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, + anon_sym_LBRACE, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, + anon_sym_DQUOTE, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + STATE(1441), 1, + sym_primary_expression, + STATE(2161), 1, + sym_selector_expression, + STATE(2232), 1, + sym_expression, + STATE(2439), 1, + sym_dotted_name, + STATE(2714), 1, + sym_slice, + STATE(3110), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1711), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(535), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1705), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1702), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25064] = 4, + ACTIONS(1390), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 26, + ACTIONS(1313), 25, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -38157,7 +40290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -38172,7 +40304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1276), 33, + ACTIONS(1311), 34, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -38196,6 +40328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -38206,16 +40339,103 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [20112] = 4, - ACTIONS(3), 2, + [25135] = 25, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1269), 1, + anon_sym_LBRACK, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1273), 1, + anon_sym_LBRACE, + ACTIONS(1281), 1, + anon_sym_DQUOTE, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1321), 1, + anon_sym_, + STATE(326), 1, + aux_sym_long_expression_repeat1, + STATE(999), 1, + sym_primary_expression, + STATE(1038), 1, + sym_expression, + STATE(1194), 1, + sym_selector_expression, + STATE(2421), 1, + sym_dotted_name, + STATE(2981), 1, + sym_quant_op, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(337), 2, + ACTIONS(1265), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1277), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1114), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1283), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1120), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1121), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1330), 26, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25248] = 4, + STATE(318), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1261), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -38240,13 +40460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1328), 32, + ACTIONS(1259), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -38273,82 +40494,190 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [20183] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(348), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1332), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [25319] = 25, + ACTIONS(1392), 1, + sym_identifier, + ACTIONS(1398), 1, anon_sym_LPAREN, + ACTIONS(1401), 1, anon_sym_LBRACK, + ACTIONS(1404), 1, + anon_sym_lambda, + ACTIONS(1407), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1413), 1, + anon_sym_not, + ACTIONS(1419), 1, + anon_sym_, + ACTIONS(1422), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1428), 1, + sym_string_start, + STATE(354), 1, + aux_sym_long_expression_repeat1, + STATE(1945), 1, + sym_primary_expression, + STATE(2183), 1, + sym_selector_expression, + STATE(2388), 1, + sym_dotted_name, + STATE(2498), 1, + sym_expression, + STATE(3143), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1395), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1416), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(1410), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1425), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25432] = 22, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(912), 1, + anon_sym_is, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_LBRACK, + ACTIONS(1164), 1, + anon_sym_STAR_STAR, + ACTIONS(1166), 1, + anon_sym_QMARK_DOT, + ACTIONS(1174), 1, anon_sym_PIPE, + ACTIONS(1176), 1, anon_sym_AMP, + ACTIONS(1178), 1, anon_sym_CARET, + ACTIONS(1186), 1, + anon_sym_QMARK_LBRACK, + STATE(709), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1172), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(888), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(910), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1334), 32, - anon_sym_import, + ACTIONS(880), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(882), 8, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(878), 20, + anon_sym_import, + anon_sym_assert, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20254] = 4, - STATE(367), 1, + [25539] = 5, + ACTIONS(1431), 1, + anon_sym_EQ, + STATE(353), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1338), 26, - sym__dedent, + ACTIONS(1364), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -38373,14 +40702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1336), 33, + ACTIONS(1362), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -38407,15 +40735,108 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [20325] = 5, - ACTIONS(1344), 1, - anon_sym_EQ, - STATE(325), 1, - aux_sym_union_type_repeat1, + [25612] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_LBRACK, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, + anon_sym_LBRACE, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, + anon_sym_DQUOTE, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + STATE(1441), 1, + sym_primary_expression, + STATE(2161), 1, + sym_selector_expression, + STATE(2282), 1, + sym_expression, + STATE(2439), 1, + sym_dotted_name, + STATE(2862), 1, + sym_slice, + STATE(3110), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1711), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(535), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1705), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1702), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25729] = 6, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(1440), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 26, + STATE(358), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1438), 25, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -38424,7 +40845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -38442,9 +40862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1340), 32, + ACTIONS(1433), 31, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -38475,23 +40894,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [20398] = 4, + [25804] = 6, + ACTIONS(1443), 1, + anon_sym_DOT, + ACTIONS(1446), 1, + anon_sym_QMARK_DOT, + STATE(359), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1270), 26, - sym__dedent, + ACTIONS(1379), 25, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -38509,13 +40930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1272), 32, + ACTIONS(1374), 32, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -38542,98 +40963,465 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [20469] = 22, - ACTIONS(1227), 1, + [25879] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, - anon_sym_STAR_STAR, - ACTIONS(1237), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1245), 1, - anon_sym_PIPE, - ACTIONS(1247), 1, - anon_sym_AMP, - ACTIONS(1249), 1, - anon_sym_CARET, - ACTIONS(1257), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1352), 1, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(1356), 1, - anon_sym_is, - STATE(944), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1449), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1233), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1241), 2, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1243), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1251), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1350), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1354), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1225), 5, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25996] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1346), 8, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1451), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [26113] = 25, + ACTIONS(1209), 1, + anon_sym_LPAREN, + ACTIONS(1211), 1, + anon_sym_LBRACK, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1215), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(1223), 1, anon_sym_DQUOTE, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1453), 1, + sym_identifier, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_, + STATE(340), 1, + sym_primary_expression, + STATE(382), 1, + sym_expression, + STATE(383), 1, + aux_sym_long_expression_repeat1, + STATE(1074), 1, + sym_selector_expression, + STATE(2435), 1, + sym_dotted_name, + STATE(3014), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1201), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1219), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_TILDE, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(755), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1225), 6, + sym_integer, sym_float, - ACTIONS(1348), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_else, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(760), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(767), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [26226] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1459), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [26343] = 26, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_LBRACK, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, + anon_sym_LBRACE, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, + anon_sym_DQUOTE, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, + STATE(1441), 1, + sym_primary_expression, + STATE(2161), 1, + sym_selector_expression, + STATE(2355), 1, + sym_expression, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1461), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1711), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(535), 5, + sym_integer, sym_true, sym_false, sym_none, sym_undefined, - [20576] = 4, - STATE(347), 1, - aux_sym_union_type_repeat1, + STATE(1705), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1702), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [26458] = 6, + ACTIONS(1463), 1, + anon_sym_DOT, + ACTIONS(1466), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 26, + STATE(365), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1438), 25, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -38642,7 +41430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -38660,14 +41447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1265), 33, + ACTIONS(1433), 31, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -38694,40 +41479,35 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [20647] = 13, - ACTIONS(1227), 1, + [26533] = 10, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(1164), 1, anon_sym_STAR_STAR, - ACTIONS(1237), 1, + ACTIONS(1166), 1, anon_sym_QMARK_DOT, - ACTIONS(1257), 1, + ACTIONS(1186), 1, anon_sym_QMARK_LBRACK, - STATE(944), 1, + STATE(709), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1233), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1241), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1243), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 17, + ACTIONS(944), 21, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -38739,7 +41519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1360), 30, + ACTIONS(942), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -38752,6 +41532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -38761,6 +41542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -38770,53 +41552,137 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [20736] = 14, - ACTIONS(1227), 1, + [26616] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, + anon_sym_LBRACE, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, + anon_sym_DQUOTE, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(748), 1, + anon_sym_COLON, + STATE(1441), 1, + sym_primary_expression, + STATE(2161), 1, + sym_selector_expression, + STATE(2229), 1, + sym_expression, + STATE(2439), 1, + sym_dotted_name, + STATE(2698), 1, + sym_slice, + STATE(3110), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1711), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(535), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1705), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1702), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [26733] = 10, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_LBRACK, + ACTIONS(1164), 1, anon_sym_STAR_STAR, - ACTIONS(1237), 1, + ACTIONS(1166), 1, anon_sym_QMARK_DOT, - ACTIONS(1257), 1, + ACTIONS(1186), 1, anon_sym_QMARK_LBRACK, - STATE(944), 1, + STATE(709), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1233), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1241), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1243), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1251), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 15, + ACTIONS(944), 21, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1360), 30, + ACTIONS(942), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -38829,6 +41695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -38838,6 +41705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -38847,54 +41715,51 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [20827] = 15, - ACTIONS(1227), 1, + [26816] = 12, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(1164), 1, anon_sym_STAR_STAR, - ACTIONS(1237), 1, + ACTIONS(1166), 1, anon_sym_QMARK_DOT, - ACTIONS(1249), 1, - anon_sym_CARET, - ACTIONS(1257), 1, + ACTIONS(1186), 1, anon_sym_QMARK_LBRACK, - STATE(944), 1, + STATE(709), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1233), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1241), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1243), 2, + ACTIONS(1172), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1251), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 14, + ACTIONS(944), 19, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1360), 30, + ACTIONS(942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -38925,41 +41790,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [20920] = 16, - ACTIONS(1227), 1, + [26903] = 16, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(1164), 1, anon_sym_STAR_STAR, - ACTIONS(1237), 1, + ACTIONS(1166), 1, anon_sym_QMARK_DOT, - ACTIONS(1247), 1, + ACTIONS(1176), 1, anon_sym_AMP, - ACTIONS(1249), 1, + ACTIONS(1178), 1, anon_sym_CARET, - ACTIONS(1257), 1, + ACTIONS(1186), 1, anon_sym_QMARK_LBRACK, - STATE(944), 1, + STATE(709), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1233), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1241), 2, + ACTIONS(1170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1243), 2, + ACTIONS(1172), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1251), 2, + ACTIONS(1180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1358), 13, + ACTIONS(944), 13, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -38973,7 +41838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1360), 30, + ACTIONS(942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -39004,56 +41869,66 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21015] = 6, - ACTIONS(1364), 1, - anon_sym_DOT, - ACTIONS(1369), 1, + [26998] = 15, + ACTIONS(1156), 1, + anon_sym_LPAREN, + ACTIONS(1158), 1, + anon_sym_LBRACK, + ACTIONS(1164), 1, + anon_sym_STAR_STAR, + ACTIONS(1166), 1, anon_sym_QMARK_DOT, - STATE(334), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(1178), 1, + anon_sym_CARET, + ACTIONS(1186), 1, + anon_sym_QMARK_LBRACK, + STATE(709), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 25, - sym__dedent, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1172), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1362), 32, + ACTIONS(942), 30, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -39063,7 +41938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -39073,51 +41947,53 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21090] = 12, - ACTIONS(1227), 1, + [27091] = 14, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(1164), 1, anon_sym_STAR_STAR, - ACTIONS(1237), 1, + ACTIONS(1166), 1, anon_sym_QMARK_DOT, - ACTIONS(1257), 1, + ACTIONS(1186), 1, anon_sym_QMARK_LBRACK, - STATE(944), 1, + STATE(709), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1233), 2, + ACTIONS(1162), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1243), 2, + ACTIONS(1170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1172), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1358), 19, + ACTIONS(1180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 15, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1360), 30, + ACTIONS(942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -39148,35 +42024,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21177] = 10, - ACTIONS(1227), 1, + [27182] = 13, + ACTIONS(1156), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1158), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + ACTIONS(1164), 1, anon_sym_STAR_STAR, - ACTIONS(1237), 1, + ACTIONS(1166), 1, anon_sym_QMARK_DOT, - ACTIONS(1257), 1, + ACTIONS(1186), 1, anon_sym_QMARK_LBRACK, - STATE(944), 1, + STATE(709), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 21, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1170), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1172), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(944), 17, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_AT, - anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -39188,7 +42069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1360), 32, + ACTIONS(942), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -39201,7 +42082,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -39211,7 +42091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -39221,26 +42100,110 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21260] = 6, - ACTIONS(1374), 1, + [27271] = 25, + ACTIONS(1209), 1, + anon_sym_LPAREN, + ACTIONS(1211), 1, + anon_sym_LBRACK, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1215), 1, + anon_sym_LBRACE, + ACTIONS(1223), 1, + anon_sym_DQUOTE, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1453), 1, + sym_identifier, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_, + STATE(340), 1, + sym_primary_expression, + STATE(382), 1, + sym_expression, + STATE(383), 1, + aux_sym_long_expression_repeat1, + STATE(1074), 1, + sym_selector_expression, + STATE(2435), 1, + sym_dotted_name, + STATE(3014), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1201), 2, anon_sym_DOT, - ACTIONS(1379), 1, anon_sym_QMARK_DOT, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1219), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(755), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1225), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(760), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(767), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [27384] = 4, + STATE(353), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(337), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1377), 25, - sym__dedent, + ACTIONS(1325), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -39258,12 +42221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1372), 31, + ACTIONS(1323), 33, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -39290,30 +42255,112 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21335] = 10, - ACTIONS(1227), 1, + [27455] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, - anon_sym_STAR_STAR, - ACTIONS(1237), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1257), 1, - anon_sym_QMARK_LBRACK, - STATE(944), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1469), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [27572] = 4, + STATE(353), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 21, + ACTIONS(1190), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -39329,14 +42376,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1360), 32, + ACTIONS(1188), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -39363,152 +42412,366 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21418] = 4, - STATE(325), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1263), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [27643] = 22, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(912), 1, + anon_sym_is, + ACTIONS(1156), 1, anon_sym_LPAREN, + ACTIONS(1158), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1164), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1166), 1, anon_sym_QMARK_DOT, + ACTIONS(1174), 1, + anon_sym_PIPE, + ACTIONS(1176), 1, + anon_sym_AMP, + ACTIONS(1178), 1, + anon_sym_CARET, + ACTIONS(1186), 1, + anon_sym_QMARK_LBRACK, + STATE(709), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1170), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1172), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(888), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(910), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1265), 33, - anon_sym_import, + ACTIONS(880), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1154), 8, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1152), 20, + anon_sym_import, + anon_sym_assert, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21489] = 6, - ACTIONS(1382), 1, + [27750] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(1385), 1, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1471), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(340), 2, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1377), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [27867] = 22, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(912), 1, + anon_sym_is, + ACTIONS(1156), 1, anon_sym_LPAREN, + ACTIONS(1158), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1164), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1166), 1, + anon_sym_QMARK_DOT, + ACTIONS(1174), 1, + anon_sym_PIPE, + ACTIONS(1176), 1, + anon_sym_AMP, + ACTIONS(1178), 1, + anon_sym_CARET, + ACTIONS(1186), 1, + anon_sym_QMARK_LBRACK, + STATE(709), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1162), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1170), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1172), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(888), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(910), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(880), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1124), 8, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(1372), 31, + ACTIONS(1122), 20, anon_sym_import, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21564] = 4, + [27974] = 27, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1473), 1, + anon_sym_RPAREN, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [28091] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, + STATE(349), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1332), 26, - sym__dedent, + ACTIONS(1356), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -39533,7 +42796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1334), 32, + ACTIONS(1354), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -39566,15 +42829,103 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21635] = 4, - STATE(325), 1, + [28162] = 25, + ACTIONS(1209), 1, + anon_sym_LPAREN, + ACTIONS(1211), 1, + anon_sym_LBRACK, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1215), 1, + anon_sym_LBRACE, + ACTIONS(1223), 1, + anon_sym_DQUOTE, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1453), 1, + sym_identifier, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1475), 1, + anon_sym_, + STATE(340), 1, + sym_primary_expression, + STATE(354), 1, + aux_sym_long_expression_repeat1, + STATE(388), 1, + sym_expression, + STATE(1074), 1, + sym_selector_expression, + STATE(2435), 1, + sym_dotted_name, + STATE(3014), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1201), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1219), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(755), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1225), 6, + sym_integer, + sym_float, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(760), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(767), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [28275] = 4, + STATE(353), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 26, - sym__dedent, + ACTIONS(1084), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -39599,7 +42950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1276), 33, + ACTIONS(1082), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -39633,28 +42984,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21706] = 11, - ACTIONS(900), 1, - anon_sym_DOT, - ACTIONS(1324), 1, - anon_sym_and, - ACTIONS(1326), 1, - anon_sym_PLUS, - ACTIONS(1392), 1, - anon_sym_as, - ACTIONS(1394), 1, - anon_sym_if, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1398), 1, - anon_sym_or, + [28346] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(349), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1388), 24, + ACTIONS(1329), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -39663,6 +43000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -39679,9 +43018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1390), 27, + ACTIONS(1327), 32, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -39697,6 +43039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -39707,17 +43051,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21791] = 6, - ACTIONS(1400), 1, - anon_sym_DOT, - ACTIONS(1403), 1, - anon_sym_QMARK_DOT, - STATE(344), 1, - aux_sym_dotted_name_repeat1, + [28417] = 6, + ACTIONS(920), 1, + anon_sym_and, + ACTIONS(922), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 25, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1080), 25, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -39726,7 +43071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -39743,13 +43088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1362), 32, + ACTIONS(1078), 31, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -39764,7 +43109,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -39776,15 +43120,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21866] = 5, - ACTIONS(1406), 1, - anon_sym_EQ, - STATE(347), 1, - aux_sym_union_type_repeat1, + [28492] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 26, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(876), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -39811,7 +43154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1340), 32, + ACTIONS(874), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -39844,98 +43187,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [21939] = 22, - ACTIONS(1227), 1, - anon_sym_LPAREN, - ACTIONS(1229), 1, - anon_sym_LBRACK, - ACTIONS(1235), 1, - anon_sym_STAR_STAR, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1245), 1, - anon_sym_PIPE, - ACTIONS(1247), 1, - anon_sym_AMP, - ACTIONS(1249), 1, - anon_sym_CARET, - ACTIONS(1257), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1352), 1, - anon_sym_not, - ACTIONS(1356), 1, - anon_sym_is, - STATE(944), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1233), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1241), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1243), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1251), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1350), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1354), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1225), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1408), 8, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(1410), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [22046] = 4, - STATE(313), 1, - aux_sym_union_type_repeat1, + [28563] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1338), 26, + STATE(349), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(876), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -39962,14 +43221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1336), 33, + ACTIONS(874), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -39996,14 +43254,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [22117] = 4, + [28634] = 4, + STATE(353), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(340), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1330), 26, + ACTIONS(1344), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -40030,13 +43287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1328), 32, + ACTIONS(1342), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -40063,86 +43321,187 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [22188] = 10, - ACTIONS(1227), 1, + [28705] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(980), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(982), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, - anon_sym_STAR_STAR, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1257), 1, - anon_sym_QMARK_LBRACK, - STATE(944), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(984), 1, + anon_sym_LBRACE, + ACTIONS(992), 1, + anon_sym_DQUOTE, + ACTIONS(1066), 1, + anon_sym_, + STATE(332), 1, + aux_sym_long_expression_repeat1, + STATE(1454), 1, + sym_primary_expression, + STATE(1564), 1, + sym_expression, + STATE(2162), 1, + sym_selector_expression, + STATE(2467), 1, + sym_dotted_name, + STATE(3095), 1, + sym_quant_op, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1318), 21, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(988), 3, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1877), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 6, + sym_integer, sym_float, - ACTIONS(1316), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1906), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1909), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [28818] = 25, + ACTIONS(1209), 1, + anon_sym_LPAREN, + ACTIONS(1211), 1, + anon_sym_LBRACK, + ACTIONS(1213), 1, anon_sym_lambda, - anon_sym_in, + ACTIONS(1215), 1, + anon_sym_LBRACE, + ACTIONS(1223), 1, + anon_sym_DQUOTE, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1453), 1, + sym_identifier, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_, + STATE(340), 1, + sym_primary_expression, + STATE(382), 1, + sym_expression, + STATE(383), 1, + aux_sym_long_expression_repeat1, + STATE(1074), 1, + sym_selector_expression, + STATE(2435), 1, + sym_dotted_name, + STATE(3014), 1, + sym_quant_op, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1201), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1219), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(755), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1225), 6, sym_integer, - sym_identifier, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - [22271] = 4, - STATE(325), 1, - aux_sym_union_type_repeat1, + STATE(760), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(767), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [28931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1312), 26, + ACTIONS(1479), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -40169,7 +43528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1314), 33, + ACTIONS(1477), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -40203,14 +43562,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [22342] = 4, + [28999] = 8, + ACTIONS(1488), 1, + anon_sym_not, + ACTIONS(1494), 1, + anon_sym_is, + STATE(393), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1221), 26, + ACTIONS(1485), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1491), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1483), 22, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -40231,13 +43602,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1219), 32, + ACTIONS(1481), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -40245,7 +43612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -40257,26 +43623,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22413] = 4, - ACTIONS(1416), 1, - anon_sym_DASH_GT, + [29077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 25, + ACTIONS(1497), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -40288,6 +43648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -40302,7 +43663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1414), 34, + ACTIONS(1499), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -40326,7 +43687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -40337,13 +43697,99 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [22484] = 4, - ACTIONS(1422), 1, - anon_sym_DASH_GT, + [29145] = 26, + ACTIONS(772), 1, + sym_identifier, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + STATE(1644), 1, + sym_primary_expression, + STATE(2179), 1, + sym_selector_expression, + STATE(2352), 1, + sym_expression, + STATE(2369), 1, + sym_dotted_name, + STATE(2874), 1, + sym_keyword_argument, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1972), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1969), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [29259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 25, + ACTIONS(1501), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -40355,6 +43801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -40369,7 +43816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1420), 34, + ACTIONS(1503), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -40393,7 +43840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -40404,100 +43850,85 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [22555] = 22, - ACTIONS(1227), 1, - anon_sym_LPAREN, - ACTIONS(1229), 1, - anon_sym_LBRACK, - ACTIONS(1235), 1, - anon_sym_STAR_STAR, - ACTIONS(1237), 1, - anon_sym_QMARK_DOT, - ACTIONS(1245), 1, - anon_sym_PIPE, - ACTIONS(1247), 1, - anon_sym_AMP, - ACTIONS(1249), 1, - anon_sym_CARET, - ACTIONS(1257), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1352), 1, + [29327] = 8, + ACTIONS(1508), 1, anon_sym_not, - ACTIONS(1356), 1, + ACTIONS(1514), 1, anon_sym_is, - STATE(944), 1, - sym_argument_list, - STATE(2238), 1, + STATE(397), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1233), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1241), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1243), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1251), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1350), 3, + ACTIONS(1505), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1354), 4, + ACTIONS(1511), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1225), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1424), 8, + ACTIONS(1483), 22, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1426), 20, + ACTIONS(1481), 27, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22662] = 4, - STATE(325), 1, - aux_sym_union_type_repeat1, + [29405] = 4, + ACTIONS(1431), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 26, - sym__dedent, + ACTIONS(1364), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -40522,14 +43953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1261), 33, + ACTIONS(1362), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -40556,15 +43986,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [22733] = 4, - ACTIONS(1428), 1, - anon_sym_DASH_GT, + [29475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 25, - sym__dedent, + ACTIONS(1379), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -40574,6 +44002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -40588,7 +44017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1420), 34, + ACTIONS(1374), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -40612,7 +44041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -40623,101 +44051,76 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [22804] = 22, - ACTIONS(1280), 1, + [29543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1282), 1, anon_sym_LBRACK, - ACTIONS(1288), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(1290), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1298), 1, - anon_sym_PIPE, - ACTIONS(1300), 1, - anon_sym_AMP, - ACTIONS(1302), 1, - anon_sym_CARET, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1352), 1, - anon_sym_not, - ACTIONS(1356), 1, - anon_sym_is, - STATE(991), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1294), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1296), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1304), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1350), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1354), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1225), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1408), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1410), 20, + ACTIONS(1519), 33, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22911] = 5, - ACTIONS(1326), 1, - anon_sym_PLUS, + [29611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 25, + ACTIONS(1521), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -40727,6 +44130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -40743,13 +44147,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1432), 32, + ACTIONS(1523), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -40776,30 +44181,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [22984] = 10, - ACTIONS(1280), 1, - anon_sym_LPAREN, - ACTIONS(1282), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_STAR_STAR, - ACTIONS(1290), 1, - anon_sym_QMARK_DOT, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - STATE(991), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [29679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 21, - sym__dedent, + ACTIONS(1525), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -40815,14 +44210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1360), 32, + ACTIONS(1527), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -40849,30 +44246,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23067] = 10, - ACTIONS(1280), 1, - anon_sym_LPAREN, - ACTIONS(1282), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_STAR_STAR, - ACTIONS(1290), 1, - anon_sym_QMARK_DOT, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - STATE(991), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [29747] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 21, - sym__dedent, + ACTIONS(1529), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -40888,14 +44275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1360), 32, + ACTIONS(1531), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -40922,39 +44311,25 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23150] = 12, - ACTIONS(1280), 1, - anon_sym_LPAREN, - ACTIONS(1282), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_STAR_STAR, - ACTIONS(1290), 1, - anon_sym_QMARK_DOT, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - STATE(991), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [29815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1296), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 19, - sym__dedent, + ACTIONS(1533), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -40965,20 +44340,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1360), 30, + ACTIONS(1535), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -40988,6 +44366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -40997,67 +44376,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23237] = 16, - ACTIONS(1280), 1, + [29883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1537), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1282), 1, anon_sym_LBRACK, - ACTIONS(1288), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(1290), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1300), 1, - anon_sym_AMP, - ACTIONS(1302), 1, - anon_sym_CARET, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - STATE(991), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1294), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1296), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1304), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1358), 13, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_PIPE, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1360), 30, + ACTIONS(1539), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -41067,6 +44431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -41076,54 +44441,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23332] = 15, - ACTIONS(1280), 1, - anon_sym_LPAREN, - ACTIONS(1282), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_STAR_STAR, - ACTIONS(1290), 1, - anon_sym_QMARK_DOT, - ACTIONS(1302), 1, - anon_sym_CARET, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - STATE(991), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [29951] = 4, + ACTIONS(1366), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1294), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1296), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1304), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 14, + ACTIONS(1364), 26, sym__dedent, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1360), 30, + ACTIONS(1362), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -41136,6 +44487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -41145,6 +44497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -41154,65 +44507,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23425] = 14, - ACTIONS(1280), 1, - anon_sym_LPAREN, - ACTIONS(1282), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_STAR_STAR, - ACTIONS(1290), 1, - anon_sym_QMARK_DOT, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - STATE(991), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [30021] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1294), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1296), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1304), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 15, - sym__dedent, + ACTIONS(1541), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1360), 30, + ACTIONS(1543), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -41222,6 +44562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -41231,40 +44572,113 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23516] = 13, - ACTIONS(1280), 1, + [30089] = 26, + ACTIONS(1201), 1, + anon_sym_DOT, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1453), 1, + sym_identifier, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(1282), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_STAR_STAR, - ACTIONS(1290), 1, - anon_sym_QMARK_DOT, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - STATE(991), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1553), 1, + anon_sym_DQUOTE, + ACTIONS(1555), 1, + sym_float, + STATE(49), 1, + aux_sym_check_statement_repeat1, + STATE(340), 1, + sym_primary_expression, + STATE(1074), 1, + sym_selector_expression, + STATE(1138), 1, + sym_expression, + STATE(2435), 1, + sym_dotted_name, + STATE(3014), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1294), 2, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1296), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 17, + anon_sym_TILDE, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(755), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1225), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(760), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(767), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [30203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1501), 26, sym__dedent, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -41275,20 +44689,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1360), 30, + ACTIONS(1503), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -41298,6 +44715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, @@ -41307,13 +44725,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23605] = 4, - ACTIONS(1434), 1, - anon_sym_DASH_GT, + [30271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 25, + ACTIONS(1497), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -41325,6 +44741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -41339,7 +44756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1414), 34, + ACTIONS(1499), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -41363,7 +44780,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -41374,15 +44790,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23676] = 5, - ACTIONS(1436), 1, - anon_sym_PIPE, - STATE(367), 1, - aux_sym_union_type_repeat1, + [30339] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 25, + ACTIONS(1559), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -41397,6 +44809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -41408,7 +44821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1265), 33, + ACTIONS(1557), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -41442,16 +44855,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23749] = 5, - ACTIONS(1326), 1, - anon_sym_PLUS, + [30407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1439), 25, + ACTIONS(1559), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -41461,6 +44869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -41477,13 +44886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1441), 32, + ACTIONS(1557), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -41510,183 +44920,141 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23822] = 22, - ACTIONS(1280), 1, + [30475] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1379), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1282), 1, anon_sym_LBRACK, - ACTIONS(1288), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(1290), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1298), 1, - anon_sym_PIPE, - ACTIONS(1300), 1, - anon_sym_AMP, - ACTIONS(1302), 1, - anon_sym_CARET, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1352), 1, - anon_sym_not, - ACTIONS(1356), 1, - anon_sym_is, - STATE(991), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1294), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1296), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1304), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1350), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1354), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1225), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1346), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1348), 20, + ACTIONS(1374), 33, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [23929] = 22, - ACTIONS(1280), 1, + [30543] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1479), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1282), 1, anon_sym_LBRACK, - ACTIONS(1288), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(1290), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1298), 1, - anon_sym_PIPE, - ACTIONS(1300), 1, - anon_sym_AMP, - ACTIONS(1302), 1, - anon_sym_CARET, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1352), 1, - anon_sym_not, - ACTIONS(1356), 1, - anon_sym_is, - STATE(991), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1294), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1296), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1304), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1350), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1354), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1225), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1424), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1426), 20, + ACTIONS(1477), 33, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24036] = 4, - ACTIONS(1443), 1, - anon_sym_DASH_GT, + [30611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 25, + ACTIONS(1521), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -41698,6 +45066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -41712,7 +45081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1276), 34, + ACTIONS(1523), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -41736,7 +45105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -41747,18 +45115,28 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [24107] = 5, - ACTIONS(1326), 1, - anon_sym_PLUS, + [30679] = 8, + ACTIONS(952), 1, + anon_sym_not, + ACTIONS(956), 1, + anon_sym_is, + STATE(432), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 25, + ACTIONS(950), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(954), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 22, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -41766,6 +45144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -41776,13 +45155,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1447), 32, + ACTIONS(880), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -41790,7 +45165,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -41802,31 +45176,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24180] = 6, - ACTIONS(1449), 1, - anon_sym_and, - ACTIONS(1451), 1, - anon_sym_PLUS, + [30757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1320), 25, + ACTIONS(1517), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -41836,6 +45199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -41852,13 +45216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1322), 31, + ACTIONS(1519), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -41873,6 +45238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -41884,170 +45250,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [24255] = 26, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, - anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(910), 1, + [30825] = 8, + ACTIONS(1168), 1, anon_sym_not, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_LBRACE, - ACTIONS(1461), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_float, - STATE(74), 1, - aux_sym_check_statement_repeat1, - STATE(311), 1, - sym_primary_expression, - STATE(1144), 1, - sym_selector_expression, - STATE(1175), 1, - sym_expression, - STATE(2448), 1, - sym_dotted_name, - STATE(3041), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(930), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(918), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(915), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(914), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [24370] = 5, - ACTIONS(1326), 1, - anon_sym_PLUS, + ACTIONS(1184), 1, + anon_sym_is, + STATE(421), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1465), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(1160), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1182), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1467), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [24443] = 4, - STATE(382), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1469), 26, + ACTIONS(948), 22, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -42068,22 +45290,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1471), 33, + ACTIONS(880), 27, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -42095,31 +45311,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24514] = 5, - ACTIONS(1451), 1, - anon_sym_PLUS, + [30903] = 4, + STATE(397), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 25, - sym__dedent, + ACTIONS(1561), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -42127,6 +45336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -42143,7 +45353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1432), 32, + ACTIONS(1563), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -42176,96 +45386,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [24587] = 8, - ACTIONS(1324), 1, - anon_sym_and, - ACTIONS(1326), 1, - anon_sym_PLUS, + [30973] = 4, + STATE(397), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1439), 12, + ACTIONS(1561), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1475), 13, - anon_sym_STAR_STAR, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - ACTIONS(1441), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [24666] = 5, - ACTIONS(1451), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1439), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -42282,7 +45419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1441), 32, + ACTIONS(1563), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -42315,18 +45452,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [24739] = 5, - ACTIONS(1451), 1, - anon_sym_PLUS, + [31043] = 4, + STATE(397), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 25, - sym__dedent, + ACTIONS(1561), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -42334,6 +45468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -42350,7 +45485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1447), 32, + ACTIONS(1563), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -42383,18 +45518,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [24812] = 5, - ACTIONS(1451), 1, - anon_sym_PLUS, + [31113] = 4, + STATE(397), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1465), 25, - sym__dedent, + ACTIONS(1561), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -42402,6 +45534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -42418,7 +45551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1467), 32, + ACTIONS(1563), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -42451,15 +45584,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [24885] = 4, - STATE(344), 1, - aux_sym_dotted_name_repeat1, + [31183] = 4, + STATE(393), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1477), 26, + ACTIONS(1561), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -42484,14 +45617,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1479), 33, + ACTIONS(1563), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -42518,13 +45650,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [24956] = 4, - STATE(384), 1, - aux_sym_dotted_name_repeat1, + [31253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 26, + ACTIONS(1541), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -42551,7 +45681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1471), 33, + ACTIONS(1543), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -42585,13 +45715,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [25027] = 4, - STATE(334), 1, - aux_sym_dotted_name_repeat1, + [31321] = 4, + STATE(393), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1477), 26, + ACTIONS(1561), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -42618,14 +45748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1479), 33, + ACTIONS(1563), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -42652,33 +45781,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [25098] = 8, - ACTIONS(1324), 1, - anon_sym_and, - ACTIONS(1326), 1, - anon_sym_PLUS, - ACTIONS(1439), 1, - anon_sym_QMARK_DOT, + [31391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_or, - ACTIONS(1475), 24, + ACTIONS(1537), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -42695,10 +45812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1473), 27, + ACTIONS(1539), 33, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -42713,6 +45834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -42723,20 +45846,101 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [25177] = 6, - ACTIONS(1324), 1, - anon_sym_and, - ACTIONS(1326), 1, - anon_sym_PLUS, + [31459] = 26, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_DOT, + ACTIONS(1050), 1, + anon_sym_lambda, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_LBRACE, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + sym_float, + STATE(62), 1, + aux_sym_check_statement_repeat1, + STATE(201), 1, + sym_primary_expression, + STATE(1063), 1, + sym_selector_expression, + STATE(1136), 1, + sym_expression, + STATE(2443), 1, + sym_dotted_name, + STATE(2930), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(516), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1062), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(520), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(521), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1439), 25, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [31573] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1533), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -42744,6 +45948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -42760,13 +45965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1441), 31, + ACTIONS(1535), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -42781,6 +45987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -42792,39 +45999,23 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [25252] = 8, - ACTIONS(1449), 1, - anon_sym_and, - ACTIONS(1451), 1, - anon_sym_PLUS, + [31641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1439), 12, + ACTIONS(1529), 26, sym__dedent, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1475), 13, - anon_sym_STAR_STAR, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -42832,23 +46023,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, - ACTIONS(1441), 25, + sym_float, + ACTIONS(1531), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, + anon_sym_EQ, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, @@ -42856,121 +46052,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [25331] = 26, - ACTIONS(762), 1, - sym_identifier, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [31709] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1525), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, - anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, - sym_string_start, - STATE(1642), 1, - sym_primary_expression, - STATE(2233), 1, - sym_selector_expression, - STATE(2414), 1, - sym_expression, - STATE(2499), 1, - sym_dotted_name, - STATE(2933), 1, - sym_keyword_argument, - STATE(3102), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1527), 33, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(786), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1972), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [25446] = 8, - ACTIONS(1439), 1, - anon_sym_QMARK_DOT, - ACTIONS(1449), 1, - anon_sym_and, - ACTIONS(1451), 1, - anon_sym_PLUS, + [31777] = 4, + STATE(393), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_or, - ACTIONS(1475), 24, + ACTIONS(1561), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -42979,6 +46144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -42995,9 +46162,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1473), 27, + ACTIONS(1563), 32, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -43013,6 +46183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -43023,18 +46195,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [25525] = 6, - ACTIONS(1449), 1, - anon_sym_and, - ACTIONS(1451), 1, - anon_sym_PLUS, + [31847] = 4, + STATE(393), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1439), 25, + ACTIONS(1561), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -43044,6 +46211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -43060,7 +46228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1441), 31, + ACTIONS(1563), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -43081,6 +46249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -43092,72 +46261,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [25600] = 26, - ACTIONS(876), 1, + [31917] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1145), 1, - sym_identifier, - ACTIONS(1147), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(563), 1, sym_float, - STATE(43), 1, - aux_sym_check_statement_repeat1, - STATE(316), 1, + ACTIONS(1088), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(1142), 1, + sym_expression, + STATE(1378), 1, sym_primary_expression, - STATE(1090), 1, + STATE(1418), 1, sym_selector_expression, - STATE(1180), 1, - sym_expression, - STATE(2442), 1, + STATE(2395), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43165,7 +46332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -43173,7 +46340,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -43181,28 +46347,97 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25715] = 11, - ACTIONS(876), 1, + [32028] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(1449), 1, - anon_sym_and, - ACTIONS(1451), 1, - anon_sym_PLUS, - ACTIONS(1487), 1, + ACTIONS(1203), 1, anon_sym_QMARK_DOT, - ACTIONS(1495), 1, - anon_sym_as, - ACTIONS(1497), 1, - anon_sym_if, - ACTIONS(1499), 1, - anon_sym_or, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_LBRACK, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1553), 1, + anon_sym_DQUOTE, + ACTIONS(1555), 1, + sym_float, + ACTIONS(1577), 1, + sym_identifier, + STATE(366), 1, + sym_primary_expression, + STATE(2183), 1, + sym_selector_expression, + STATE(2388), 1, + sym_dotted_name, + STATE(2505), 1, + sym_expression, + STATE(3014), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(761), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1225), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(767), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1388), 24, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [32139] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1581), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -43211,6 +46446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -43227,9 +46464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1390), 27, + ACTIONS(1579), 32, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -43245,6 +46485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -43255,24 +46497,183 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [25800] = 9, - ACTIONS(876), 1, + [32206] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1449), 1, - anon_sym_and, - ACTIONS(1451), 1, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1583), 1, + sym_identifier, + ACTIONS(1585), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, + anon_sym_QMARK_DOT, + ACTIONS(1595), 1, + anon_sym_DQUOTE, + ACTIONS(1597), 1, + sym_float, + STATE(1486), 1, + sym_primary_expression, + STATE(2183), 1, + sym_selector_expression, + STATE(2388), 1, + sym_dotted_name, + STATE(2481), 1, + sym_expression, + STATE(3074), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, - ACTIONS(1487), 1, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1898), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1146), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1845), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [32317] = 25, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1331), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_not, + ACTIONS(1585), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1499), 1, - anon_sym_or, + ACTIONS(1595), 1, + anon_sym_DQUOTE, + ACTIONS(1597), 1, + sym_float, + STATE(1470), 1, + sym_primary_expression, + STATE(2166), 1, + sym_selector_expression, + STATE(2295), 1, + sym_expression, + STATE(2466), 1, + sym_dotted_name, + STATE(3074), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1850), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1146), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1846), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1845), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1503), 24, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [32428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1601), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -43281,6 +46682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -43297,8 +46700,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1501), 29, + ACTIONS(1599), 32, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -43317,6 +46721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -43327,149 +46733,38 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [25881] = 21, - ACTIONS(1280), 1, - anon_sym_LPAREN, - ACTIONS(1282), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_STAR_STAR, - ACTIONS(1290), 1, - anon_sym_QMARK_DOT, - ACTIONS(1292), 1, - anon_sym_not, - ACTIONS(1298), 1, - anon_sym_PIPE, - ACTIONS(1300), 1, - anon_sym_AMP, - ACTIONS(1302), 1, - anon_sym_CARET, - ACTIONS(1308), 1, - anon_sym_is, - ACTIONS(1310), 1, - anon_sym_QMARK_LBRACK, - STATE(525), 1, - aux_sym_comparison_operator_repeat1, - STATE(991), 1, - sym_argument_list, + [32495] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1286), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1294), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1296), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1304), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1284), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1306), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 8, + ACTIONS(1605), 26, sym__dedent, sym_string_start, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(1225), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [25986] = 21, - ACTIONS(1227), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, anon_sym_LBRACK, - ACTIONS(1235), 1, + anon_sym_LBRACE, anon_sym_STAR_STAR, - ACTIONS(1237), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1239), 1, - anon_sym_not, - ACTIONS(1245), 1, - anon_sym_PIPE, - ACTIONS(1247), 1, - anon_sym_AMP, - ACTIONS(1249), 1, - anon_sym_CARET, - ACTIONS(1255), 1, - anon_sym_is, - ACTIONS(1257), 1, - anon_sym_QMARK_LBRACK, - STATE(529), 1, - aux_sym_comparison_operator_repeat1, - STATE(944), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1233), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1241), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1243), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1251), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1231), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1253), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 8, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1225), 25, + ACTIONS(1603), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -43477,50 +46772,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_type, anon_sym_schema, anon_sym_mixin, anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [26091] = 9, - ACTIONS(900), 1, - anon_sym_DOT, - ACTIONS(1324), 1, - anon_sym_and, - ACTIONS(1326), 1, - anon_sym_PLUS, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1398), 1, - anon_sym_or, + [32562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1503), 24, + ACTIONS(1609), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -43537,8 +46828,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1501), 29, + ACTIONS(1607), 32, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -43557,6 +46849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -43567,70 +46861,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [26172] = 25, - ACTIONS(973), 1, + [32629] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(993), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1177), 1, + ACTIONS(1453), 1, sym_identifier, - ACTIONS(1179), 1, + ACTIONS(1455), 1, anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, - anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1555), 1, sym_float, - STATE(1544), 1, + STATE(340), 1, sym_primary_expression, - STATE(2219), 1, + STATE(1074), 1, sym_selector_expression, - STATE(2350), 1, + STATE(1127), 1, sym_expression, - STATE(2470), 1, + STATE(2435), 1, sym_dotted_name, - STATE(3070), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(755), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43638,7 +46932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -43646,7 +46940,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -43654,70 +46947,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26284] = 25, - ACTIONS(507), 1, + [32740] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1519), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(1463), 1, + STATE(347), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2505), 1, sym_expression, - STATE(3087), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43725,7 +47018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -43733,7 +47026,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -43741,70 +47033,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26396] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, + [32851] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1613), 26, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1199), 1, + ACTIONS(1611), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1521), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [32918] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, anon_sym_not, - STATE(2002), 1, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1579), 1, + sym_expression, + STATE(2162), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2467), 1, sym_dotted_name, - STATE(2560), 1, - sym_expression, - STATE(3115), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43812,7 +47168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -43820,7 +47176,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -43828,12 +47183,76 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26508] = 25, - ACTIONS(453), 1, + [33029] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1617), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1615), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(459), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [33096] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -43847,51 +47266,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1199), 1, + ACTIONS(1088), 1, sym_identifier, - ACTIONS(1201), 1, + ACTIONS(1090), 1, anon_sym_not, - STATE(2002), 1, + STATE(1378), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1379), 1, + sym_expression, + STATE(1418), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2395), 1, sym_dotted_name, - STATE(2560), 1, - sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43899,7 +47318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -43907,7 +47326,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -43915,7 +47333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26620] = 25, + [33207] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -43924,50 +47342,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1525), 1, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1183), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2332), 1, + STATE(2284), 1, sym_dotted_name, - STATE(2457), 1, + STATE(2410), 1, sym_expression, - STATE(3077), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -43978,7 +47396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43986,7 +47404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -43994,7 +47412,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44002,70 +47419,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26732] = 25, - ACTIONS(13), 1, + [33318] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_LBRACK, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1059), 1, - anon_sym_not, - STATE(1523), 1, - sym_expression, - STATE(1547), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1783), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2483), 1, + sym_expression, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44073,7 +47490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44081,7 +47498,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44089,17 +47505,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26844] = 25, - ACTIONS(453), 1, + [33429] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -44112,47 +47524,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - STATE(1393), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1945), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2531), 1, + STATE(2504), 1, sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44160,7 +47576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44168,7 +47584,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44176,12 +47591,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26956] = 25, - ACTIONS(453), 1, + [33540] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -44195,51 +47610,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1045), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1412), 1, + ACTIONS(1653), 1, + sym_identifier, + STATE(1552), 1, sym_primary_expression, - STATE(1417), 1, - sym_expression, - STATE(1424), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2486), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44247,7 +47662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44255,7 +47670,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44263,70 +47677,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27068] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [33651] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_LBRACK, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1523), 1, - sym_expression, - STATE(1604), 1, + STATE(1009), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2483), 1, + sym_expression, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44334,7 +47748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44342,7 +47756,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44350,70 +47763,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27180] = 25, - ACTIONS(453), 1, + [33762] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1045), 1, - anon_sym_not, - STATE(1357), 1, - sym_expression, - STATE(1412), 1, + STATE(1012), 1, sym_primary_expression, - STATE(1424), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2483), 1, + sym_expression, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44421,7 +47834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44429,7 +47842,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44437,70 +47849,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27292] = 25, - ACTIONS(453), 1, + [33873] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - STATE(1393), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1096), 1, + sym_identifier, + ACTIONS(1098), 1, + anon_sym_not, + STATE(1670), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1690), 1, + sym_expression, + STATE(1892), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2379), 1, sym_dotted_name, - STATE(2480), 1, - sym_expression, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44508,7 +47920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44516,7 +47928,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44524,70 +47935,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27404] = 25, - ACTIONS(453), 1, + [33984] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(2010), 1, + STATE(1037), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2560), 1, + STATE(2483), 1, sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44595,7 +48006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44603,7 +48014,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44611,12 +48021,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27516] = 25, - ACTIONS(453), 1, + [34095] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -44630,51 +48040,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1199), 1, + ACTIONS(1010), 1, sym_identifier, - ACTIONS(1201), 1, + ACTIONS(1012), 1, anon_sym_not, - STATE(2011), 1, + STATE(1554), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2176), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2560), 1, + STATE(2276), 1, sym_expression, - STATE(3115), 1, + STATE(2414), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44682,7 +48092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44690,7 +48100,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44698,70 +48107,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27628] = 25, - ACTIONS(453), 1, + [34206] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - STATE(1393), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1441), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2430), 1, - sym_dotted_name, - STATE(2434), 1, + STATE(2288), 1, sym_expression, - STATE(3115), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44769,7 +48178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44777,7 +48186,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44785,70 +48193,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27740] = 25, - ACTIONS(453), 1, + [34317] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - STATE(1393), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_not, + STATE(1412), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1420), 1, + sym_expression, + STATE(1521), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2391), 1, sym_dotted_name, - STATE(2437), 1, - sym_expression, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44856,7 +48264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44864,7 +48272,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44872,70 +48279,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27852] = 25, - ACTIONS(453), 1, + [34428] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - STATE(1393), 1, + STATE(1014), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2485), 1, + STATE(2483), 1, sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44943,7 +48350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -44951,7 +48358,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -44959,70 +48365,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27964] = 25, - ACTIONS(453), 1, + [34539] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(2012), 1, + STATE(1015), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2560), 1, + STATE(2483), 1, sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45030,7 +48436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45038,7 +48444,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45046,70 +48451,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28076] = 25, - ACTIONS(453), 1, + [34650] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - STATE(1393), 1, + STATE(1021), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2439), 1, + STATE(2483), 1, sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45117,7 +48522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45125,7 +48530,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45133,70 +48537,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28188] = 25, - ACTIONS(453), 1, + [34761] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - STATE(1393), 1, + ACTIONS(1657), 1, + sym_identifier, + STATE(1172), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2447), 1, + STATE(2502), 1, sym_expression, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45204,7 +48608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45212,7 +48616,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45220,70 +48623,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28300] = 25, - ACTIONS(453), 1, + [34872] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - STATE(1393), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2430), 1, - sym_dotted_name, - STATE(2451), 1, + STATE(2200), 1, sym_expression, - STATE(3115), 1, + STATE(2366), 1, + sym_dotted_name, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45291,7 +48694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45299,7 +48702,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45307,70 +48709,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28412] = 25, - ACTIONS(401), 1, + [34983] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - STATE(1183), 1, + ACTIONS(1659), 1, + sym_identifier, + STATE(196), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2338), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2491), 1, + sym_expression, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45378,7 +48780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45386,7 +48788,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45394,70 +48795,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28524] = 25, - ACTIONS(453), 1, + [35094] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - STATE(1393), 1, + STATE(1029), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2453), 1, + STATE(2483), 1, sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45465,7 +48866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45473,7 +48874,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45481,13 +48881,17 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28636] = 25, - ACTIONS(453), 1, + [35205] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, + ACTIONS(545), 1, + sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -45500,51 +48904,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(2013), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2560), 1, + STATE(2363), 1, sym_expression, - STATE(3115), 1, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45552,7 +48952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45560,7 +48960,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45568,17 +48967,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28748] = 25, - ACTIONS(453), 1, + [35316] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -45591,47 +48986,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - STATE(1393), 1, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_not, + STATE(1554), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2176), 1, sym_selector_expression, - STATE(2430), 1, - sym_dotted_name, - STATE(2456), 1, + STATE(2271), 1, sym_expression, - STATE(3115), 1, + STATE(2414), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45639,7 +49038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45647,7 +49046,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45655,14 +49053,14 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28860] = 25, - ACTIONS(453), 1, + [35427] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(545), 1, sym_identifier, @@ -45678,47 +49076,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - STATE(1393), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2430), 1, - sym_dotted_name, - STATE(2460), 1, + STATE(2431), 1, sym_expression, - STATE(3115), 1, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45726,7 +49124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45734,7 +49132,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45742,70 +49139,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28972] = 25, - ACTIONS(453), 1, + [35538] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(2014), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2560), 1, + STATE(2432), 1, sym_expression, - STATE(3115), 1, + STATE(2467), 1, + sym_dotted_name, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45813,7 +49210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45821,7 +49218,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45829,70 +49225,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29084] = 25, - ACTIONS(453), 1, + [35649] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1116), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(2015), 1, + STATE(1149), 1, + sym_expression, + STATE(1150), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1276), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2417), 1, sym_dotted_name, - STATE(2560), 1, - sym_expression, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45900,7 +49296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45908,7 +49304,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -45916,70 +49311,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29196] = 25, - ACTIONS(453), 1, + [35760] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1275), 1, + anon_sym_not, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(2016), 1, + STATE(1013), 1, + sym_expression, + STATE(1019), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1054), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2437), 1, sym_dotted_name, - STATE(2560), 1, - sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45987,7 +49382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -45995,7 +49390,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46003,70 +49397,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29308] = 25, - ACTIONS(453), 1, + [35871] = 25, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1045), 1, - anon_sym_not, - STATE(1399), 1, - sym_expression, - STATE(1412), 1, + STATE(999), 1, sym_primary_expression, - STATE(1424), 1, + STATE(1194), 1, sym_selector_expression, - STATE(2494), 1, + STATE(1922), 1, + sym_expression, + STATE(2421), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46074,7 +49468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46082,7 +49476,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46090,70 +49483,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29420] = 25, - ACTIONS(13), 1, + [35982] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1138), 1, + anon_sym_not, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1585), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1059), 1, - anon_sym_not, - STATE(1508), 1, - sym_expression, - STATE(1547), 1, + STATE(1453), 1, sym_primary_expression, - STATE(1783), 1, + STATE(1488), 1, + sym_expression, + STATE(1645), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2424), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46161,7 +49554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46169,7 +49562,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46177,70 +49569,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29532] = 25, - ACTIONS(453), 1, + [36093] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - STATE(1393), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2274), 1, sym_dotted_name, - STATE(2467), 1, + STATE(2400), 1, sym_expression, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46248,7 +49640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46256,7 +49648,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46264,70 +49655,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29644] = 25, - ACTIONS(453), 1, + [36204] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(1217), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1555), 1, sym_float, - STATE(1393), 1, + STATE(253), 1, + sym_expression, + STATE(267), 1, sym_primary_expression, - STATE(2210), 1, + STATE(418), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2426), 1, sym_dotted_name, - STATE(2473), 1, - sym_expression, - STATE(3115), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46335,7 +49726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46343,7 +49734,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46351,17 +49741,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29756] = 25, - ACTIONS(453), 1, + [36315] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -46374,47 +49760,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - STATE(1393), 1, + ACTIONS(1249), 1, + sym_identifier, + ACTIONS(1251), 1, + anon_sym_not, + STATE(1484), 1, + sym_expression, + STATE(1573), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1626), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2429), 1, sym_dotted_name, - STATE(2478), 1, - sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46422,7 +49812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46430,7 +49820,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46438,70 +49827,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29868] = 25, - ACTIONS(453), 1, + [36426] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(1275), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - STATE(1393), 1, + STATE(1004), 1, + sym_expression, + STATE(1019), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1054), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2437), 1, sym_dotted_name, - STATE(2483), 1, - sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46509,7 +49898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46517,7 +49906,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46525,70 +49913,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29980] = 25, - ACTIONS(13), 1, + [36537] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1565), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_LBRACE, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1059), 1, - anon_sym_not, - STATE(1509), 1, - sym_expression, - STATE(1547), 1, + STATE(201), 1, sym_primary_expression, - STATE(1783), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2526), 1, + STATE(1134), 1, + sym_expression, + STATE(2443), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46596,7 +49984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46604,7 +49992,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46612,70 +49999,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30092] = 25, - ACTIONS(453), 1, + [36648] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - STATE(1393), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2430), 1, - sym_dotted_name, - STATE(2491), 1, + STATE(2339), 1, sym_expression, - STATE(3115), 1, + STATE(2366), 1, + sym_dotted_name, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46683,7 +50070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46691,7 +50078,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46699,70 +50085,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30204] = 25, - ACTIONS(401), 1, + [36759] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1295), 1, + anon_sym_not, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - STATE(1183), 1, + STATE(235), 1, + sym_expression, + STATE(288), 1, sym_primary_expression, - STATE(2153), 1, + STATE(416), 1, sym_selector_expression, - STATE(2497), 1, - sym_expression, - STATE(2532), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46770,7 +50156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46778,7 +50164,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46786,70 +50171,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30316] = 25, - ACTIONS(401), 1, + [36870] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(798), 1, sym_float, - STATE(1183), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + STATE(1644), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2378), 1, - sym_expression, - STATE(2532), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2454), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46857,7 +50242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46865,7 +50250,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46873,70 +50257,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30428] = 25, - ACTIONS(401), 1, + [36981] = 25, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1317), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1649), 1, sym_float, - STATE(1183), 1, + STATE(999), 1, sym_primary_expression, - STATE(2153), 1, + STATE(1194), 1, sym_selector_expression, - STATE(2500), 1, + STATE(1913), 1, sym_expression, - STATE(2532), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46944,7 +50328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -46952,7 +50336,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -46960,70 +50343,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30540] = 25, - ACTIONS(453), 1, + [37092] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(972), 1, anon_sym_not, - STATE(2020), 1, + ACTIONS(1661), 1, + sym_identifier, + STATE(1409), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2560), 1, + STATE(2477), 1, sym_expression, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47031,7 +50414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47039,7 +50422,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47047,70 +50429,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30652] = 25, - ACTIONS(453), 1, + [37203] = 25, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(2021), 1, + STATE(999), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1194), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2542), 1, + STATE(1924), 1, sym_expression, - STATE(3115), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47118,7 +50500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47126,7 +50508,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47134,70 +50515,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30764] = 25, - ACTIONS(401), 1, + [37314] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(798), 1, sym_float, - STATE(1183), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + STATE(1644), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2373), 1, + STATE(2362), 1, sym_expression, - STATE(2532), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47205,7 +50586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47213,7 +50594,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47221,70 +50601,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30876] = 25, - ACTIONS(401), 1, + [37425] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(537), 1, sym_float, - STATE(1183), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1441), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2323), 1, - sym_dotted_name, - STATE(2504), 1, + STATE(2227), 1, sym_expression, - STATE(3077), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47292,7 +50672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47300,7 +50680,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47308,70 +50687,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30988] = 25, - ACTIONS(401), 1, + [37536] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, - anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(53), 1, sym_float, - STATE(1183), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(978), 1, + sym_identifier, + ACTIONS(986), 1, + anon_sym_not, + STATE(1468), 1, + sym_expression, + STATE(1526), 1, sym_primary_expression, - STATE(2153), 1, + STATE(1725), 1, sym_selector_expression, - STATE(2342), 1, + STATE(2453), 1, sym_dotted_name, - STATE(2506), 1, - sym_expression, - STATE(3077), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47379,7 +50758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47387,7 +50766,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47395,70 +50773,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31100] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, + [37647] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1665), 26, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1043), 1, + ACTIONS(1663), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [37714] = 25, + ACTIONS(1044), 1, + anon_sym_DOT, + ACTIONS(1050), 1, + anon_sym_lambda, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(1045), 1, + ACTIONS(1295), 1, anon_sym_not, - STATE(1372), 1, + ACTIONS(1565), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_LBRACE, + ACTIONS(1573), 1, + anon_sym_DQUOTE, + ACTIONS(1575), 1, + sym_float, + STATE(194), 1, sym_expression, - STATE(1412), 1, + STATE(288), 1, sym_primary_expression, - STATE(1424), 1, + STATE(416), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47466,7 +50908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47474,7 +50916,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47482,70 +50923,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31212] = 25, - ACTIONS(453), 1, + [37825] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1275), 1, + anon_sym_not, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1045), 1, - anon_sym_not, - STATE(1351), 1, + STATE(1010), 1, sym_expression, - STATE(1412), 1, + STATE(1019), 1, sym_primary_expression, - STATE(1424), 1, + STATE(1054), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2437), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47553,7 +50994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47561,7 +51002,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47569,70 +51009,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31324] = 25, - ACTIONS(453), 1, + [37936] = 25, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1045), 1, + ACTIONS(1667), 1, anon_sym_not, - STATE(1178), 1, - sym_expression, - STATE(1412), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1424), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2483), 1, + sym_expression, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47640,7 +51080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47648,7 +51088,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47656,70 +51095,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31436] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [38047] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + ACTIONS(1249), 1, + sym_identifier, + ACTIONS(1251), 1, + anon_sym_not, + STATE(1516), 1, + sym_expression, + STATE(1573), 1, sym_primary_expression, - STATE(2230), 1, + STATE(1626), 1, sym_selector_expression, - STATE(2407), 1, - sym_expression, - STATE(2487), 1, + STATE(2429), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47727,7 +51166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47735,7 +51174,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47743,70 +51181,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31548] = 25, - ACTIONS(453), 1, + [38158] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1635), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - STATE(1393), 1, + STATE(1030), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2481), 1, + STATE(2483), 1, sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47814,7 +51252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47822,7 +51260,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47830,70 +51267,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31660] = 25, - ACTIONS(764), 1, + [38269] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1217), 1, + anon_sym_not, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - STATE(1642), 1, + STATE(191), 1, + sym_expression, + STATE(267), 1, sym_primary_expression, - STATE(2233), 1, + STATE(418), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2426), 1, sym_dotted_name, - STATE(2528), 1, - sym_expression, - STATE(3102), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47901,7 +51338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47909,7 +51346,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -47917,70 +51353,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31772] = 25, - ACTIONS(453), 1, + [38380] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - STATE(1393), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2512), 1, + STATE(2392), 1, sym_expression, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47988,7 +51424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -47996,7 +51432,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48004,70 +51439,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31884] = 25, - ACTIONS(507), 1, + [38491] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(2213), 1, + STATE(1580), 1, + sym_expression, + STATE(2162), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2467), 1, sym_dotted_name, - STATE(2513), 1, - sym_expression, - STATE(3087), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48075,7 +51510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -48083,7 +51518,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48091,70 +51525,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31996] = 25, - ACTIONS(401), 1, + [38602] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1138), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1597), 1, sym_float, - STATE(1183), 1, + STATE(1453), 1, sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2419), 1, + STATE(1512), 1, sym_expression, - STATE(2532), 1, + STATE(1645), 1, + sym_selector_expression, + STATE(2424), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48162,7 +51596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -48170,7 +51604,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48178,70 +51611,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32108] = 25, - ACTIONS(453), 1, + [38713] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1045), 1, - anon_sym_not, - STATE(1169), 1, - sym_expression, - STATE(1412), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(1424), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2337), 1, + sym_expression, + STATE(2467), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48249,7 +51682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -48257,7 +51690,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48265,13 +51697,17 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32220] = 25, - ACTIONS(453), 1, + [38824] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, + ACTIONS(545), 1, + sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -48284,51 +51720,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(1999), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2539), 1, + STATE(2473), 1, sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48336,7 +51768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -48344,7 +51776,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48352,70 +51783,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32332] = 25, - ACTIONS(764), 1, + [38935] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1116), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - STATE(1642), 1, + STATE(1150), 1, sym_primary_expression, - STATE(2233), 1, + STATE(1167), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2417), 1, sym_dotted_name, - STATE(2524), 1, - sym_expression, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48423,7 +51854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -48431,7 +51862,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48439,70 +51869,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32444] = 25, - ACTIONS(13), 1, + [39046] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(1059), 1, - anon_sym_not, - STATE(1526), 1, - sym_expression, - STATE(1547), 1, + STATE(1644), 1, sym_primary_expression, - STATE(1783), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2470), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48510,7 +51940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -48518,7 +51948,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48526,70 +51955,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32556] = 25, - ACTIONS(13), 1, + [39157] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(511), 1, + anon_sym_LBRACK, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1541), 1, + ACTIONS(1104), 1, sym_identifier, - STATE(1494), 1, + ACTIONS(1106), 1, + anon_sym_not, + STATE(1412), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1424), 1, + sym_expression, + STATE(1521), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2391), 1, sym_dotted_name, - STATE(2542), 1, - sym_expression, - STATE(3046), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48597,7 +52026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -48605,7 +52034,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48613,157 +52041,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32668] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [39268] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 26, + sym__dedent, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1529), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, - anon_sym_DQUOTE, - ACTIONS(1539), 1, - sym_float, - STATE(1183), 1, - sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(2534), 1, - sym_expression, - STATE(3077), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1669), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1350), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [32780] = 25, - ACTIONS(764), 1, + [39335] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1033), 1, - anon_sym_not, - STATE(1716), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1719), 1, - sym_expression, - STATE(1911), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2310), 1, + sym_expression, + STATE(2366), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48771,7 +52176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -48779,7 +52184,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48787,70 +52191,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32892] = 25, - ACTIONS(764), 1, + [39446] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(1033), 1, + ACTIONS(1098), 1, anon_sym_not, - STATE(1716), 1, + STATE(1670), 1, sym_primary_expression, - STATE(1746), 1, + STATE(1767), 1, sym_expression, - STATE(1911), 1, + STATE(1892), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2379), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48858,7 +52262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -48866,7 +52270,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48874,70 +52277,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33004] = 25, - ACTIONS(401), 1, + [39557] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2398), 1, + STATE(2449), 1, sym_expression, - STATE(2532), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48945,7 +52348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -48953,7 +52356,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -48961,70 +52363,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33116] = 25, - ACTIONS(764), 1, + [39668] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1088), 1, sym_identifier, - ACTIONS(1033), 1, + ACTIONS(1090), 1, anon_sym_not, - STATE(1716), 1, - sym_primary_expression, - STATE(1815), 1, + STATE(1334), 1, sym_expression, - STATE(1911), 1, + STATE(1378), 1, + sym_primary_expression, + STATE(1418), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2395), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49032,7 +52434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -49040,7 +52442,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -49048,157 +52449,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33228] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [39779] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1675), 26, + sym__dedent, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1529), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, - anon_sym_DQUOTE, - ACTIONS(1539), 1, - sym_float, - STATE(1183), 1, - sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(2536), 1, - sym_expression, - STATE(3077), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1673), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1350), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [33340] = 25, - ACTIONS(764), 1, + [39846] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(772), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1033), 1, - anon_sym_not, - STATE(1716), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(1744), 1, - sym_expression, - STATE(1911), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2260), 1, + sym_expression, + STATE(2467), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49206,7 +52584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -49214,7 +52592,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -49222,70 +52599,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33452] = 25, - ACTIONS(13), 1, + [39957] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1541), 1, - sym_identifier, - STATE(1622), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2567), 1, + STATE(2464), 1, sym_expression, - STATE(3046), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49293,7 +52670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -49301,7 +52678,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -49309,70 +52685,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33564] = 25, - ACTIONS(764), 1, + [40068] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(772), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1033), 1, - anon_sym_not, - STATE(1710), 1, - sym_expression, - STATE(1716), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(1911), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2455), 1, + sym_expression, + STATE(2467), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49380,7 +52756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -49388,7 +52764,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -49396,70 +52771,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33676] = 25, - ACTIONS(764), 1, + [40179] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1033), 1, - anon_sym_not, - STATE(1716), 1, + STATE(1441), 1, sym_primary_expression, - STATE(1742), 1, - sym_expression, - STATE(1911), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2409), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49467,7 +52842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -49475,7 +52850,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -49483,70 +52857,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33788] = 25, - ACTIONS(401), 1, + [40290] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2404), 1, + STATE(2407), 1, sym_expression, - STATE(2532), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49554,7 +52928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -49562,7 +52936,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -49570,70 +52943,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33900] = 25, - ACTIONS(401), 1, + [40401] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, - anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(53), 1, sym_float, - STATE(1183), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(978), 1, + sym_identifier, + ACTIONS(986), 1, + anon_sym_not, + STATE(1498), 1, + sym_expression, + STATE(1526), 1, sym_primary_expression, - STATE(2153), 1, + STATE(1725), 1, sym_selector_expression, - STATE(2358), 1, + STATE(2453), 1, sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(3077), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49641,7 +53014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -49649,7 +53022,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -49657,104 +53029,77 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34012] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [40512] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1679), 26, + sym__dedent, sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1529), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, - anon_sym_DQUOTE, - ACTIONS(1539), 1, - sym_float, - STATE(1183), 1, - sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2353), 1, - sym_dotted_name, - STATE(2438), 1, - sym_expression, - STATE(3077), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1677), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1350), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34124] = 25, - ACTIONS(453), 1, + [40579] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -49767,47 +53112,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - STATE(1393), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1945), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2490), 1, + STATE(2489), 1, sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49815,7 +53164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -49823,7 +53172,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -49831,244 +53179,264 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34236] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + [40690] = 5, + ACTIONS(1685), 1, + anon_sym_in, + ACTIONS(1687), 1, anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, - sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2488), 1, - sym_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(3087), 1, - sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(1683), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1681), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1673), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34348] = 25, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [40761] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1691), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(788), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, + ACTIONS(1689), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(1642), 1, - sym_primary_expression, - STATE(2233), 1, - sym_selector_expression, - STATE(2466), 1, - sym_expression, - STATE(2499), 1, - sym_dotted_name, - STATE(3102), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [40828] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + ACTIONS(1683), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1681), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(786), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1972), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [34460] = 25, - ACTIONS(764), 1, + [40895] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1025), 1, + ACTIONS(970), 1, sym_identifier, - ACTIONS(1033), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1671), 1, + STATE(1142), 1, sym_expression, - STATE(1716), 1, + STATE(1945), 1, sym_primary_expression, - STATE(1911), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50076,7 +53444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50084,7 +53452,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50092,70 +53459,198 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34572] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [41006] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(948), 26, + sym__dedent, sym_string_start, - ACTIONS(1165), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(880), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1527), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [41073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1683), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1529), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1539), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - STATE(1183), 1, + ACTIONS(1681), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [41140] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2433), 1, + STATE(2396), 1, sym_expression, - STATE(2532), 1, + STATE(2467), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50163,7 +53658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50171,7 +53666,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50179,70 +53673,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34684] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1165), 1, + [41251] = 25, + ACTIONS(9), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, - anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(53), 1, sym_float, - STATE(1183), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2423), 1, + STATE(2290), 1, sym_expression, - STATE(2532), 1, + STATE(2467), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50250,7 +53744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50258,7 +53752,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50266,70 +53759,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34796] = 25, - ACTIONS(1091), 1, + [41362] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1173), 1, - anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(53), 1, sym_float, - STATE(1044), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1693), 1, + sym_identifier, + STATE(1525), 1, sym_primary_expression, - STATE(1207), 1, + STATE(2183), 1, sym_selector_expression, - STATE(1969), 1, - sym_expression, - STATE(2461), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2494), 1, + sym_expression, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50337,7 +53830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50345,7 +53838,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50353,70 +53845,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34908] = 25, - ACTIONS(401), 1, + [41473] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_not, + STATE(1142), 1, + sym_expression, + STATE(1554), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2176), 1, sym_selector_expression, - STATE(2361), 1, + STATE(2414), 1, sym_dotted_name, - STATE(2503), 1, - sym_expression, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50424,7 +53916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50432,7 +53924,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50440,70 +53931,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35020] = 25, - ACTIONS(401), 1, + [41584] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1144), 1, + sym_expression, + STATE(1945), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2429), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50511,7 +54002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50519,7 +54010,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50527,70 +54017,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35132] = 25, - ACTIONS(401), 1, + [41695] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1945), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2387), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2479), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50598,7 +54088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50606,7 +54096,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50614,70 +54103,198 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35244] = 25, - ACTIONS(401), 1, + [41806] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1697), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1695), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(411), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(419), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(431), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [41873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1701), 26, + sym__dedent, sym_string_start, - ACTIONS(1525), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1699), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1527), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [41940] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(1028), 1, + sym_identifier, + ACTIONS(1030), 1, + anon_sym_not, + STATE(1916), 1, + sym_expression, + STATE(1930), 1, sym_primary_expression, - STATE(2153), 1, + STATE(1994), 1, sym_selector_expression, - STATE(2339), 1, + STATE(2440), 1, sym_dotted_name, - STATE(2427), 1, - sym_expression, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50685,7 +54302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50693,7 +54310,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50701,70 +54317,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35356] = 25, - ACTIONS(401), 1, + [42051] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_not, + STATE(1144), 1, + sym_expression, + STATE(1554), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2176), 1, sym_selector_expression, - STATE(2327), 1, + STATE(2414), 1, sym_dotted_name, - STATE(2465), 1, - sym_expression, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50772,7 +54388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50780,7 +54396,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50788,70 +54403,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35468] = 25, - ACTIONS(401), 1, + [42162] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, - anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(53), 1, sym_float, - STATE(1183), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(978), 1, + sym_identifier, + ACTIONS(986), 1, + anon_sym_not, + STATE(1505), 1, + sym_expression, + STATE(1526), 1, sym_primary_expression, - STATE(2153), 1, + STATE(1725), 1, sym_selector_expression, - STATE(2372), 1, - sym_expression, - STATE(2532), 1, + STATE(2453), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50859,7 +54474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50867,7 +54482,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50875,70 +54489,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35580] = 25, - ACTIONS(764), 1, + [42273] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1010), 1, sym_identifier, - ACTIONS(1033), 1, + ACTIONS(1012), 1, anon_sym_not, - STATE(1716), 1, + STATE(1554), 1, sym_primary_expression, - STATE(1718), 1, - sym_expression, - STATE(1911), 1, + STATE(2176), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2305), 1, + sym_expression, + STATE(2414), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50946,7 +54560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -50954,7 +54568,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -50962,70 +54575,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35692] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [42384] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + ACTIONS(1249), 1, + sym_identifier, + ACTIONS(1251), 1, + anon_sym_not, + STATE(1513), 1, + sym_expression, + STATE(1573), 1, sym_primary_expression, - STATE(2230), 1, + STATE(1626), 1, sym_selector_expression, - STATE(2474), 1, - sym_expression, - STATE(2487), 1, + STATE(2429), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51033,7 +54646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51041,7 +54654,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51049,70 +54661,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35804] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [42495] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2343), 1, + STATE(2313), 1, sym_expression, - STATE(2487), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51120,7 +54732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51128,7 +54740,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51136,17 +54747,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35916] = 25, - ACTIONS(453), 1, + [42606] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -51159,47 +54766,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - STATE(1393), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1945), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2468), 1, + STATE(2492), 1, sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51207,7 +54818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51215,7 +54826,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51223,17 +54833,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36028] = 25, - ACTIONS(453), 1, + [42717] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -51246,47 +54852,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - STATE(1393), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1967), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2424), 1, - sym_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2489), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51294,7 +54904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51302,7 +54912,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51310,70 +54919,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36140] = 25, - ACTIONS(507), 1, + [42828] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, + ACTIONS(1010), 1, sym_identifier, - STATE(1462), 1, + ACTIONS(1012), 1, + anon_sym_not, + STATE(1554), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2176), 1, sym_selector_expression, - STATE(2476), 1, + STATE(2269), 1, sym_expression, - STATE(2496), 1, + STATE(2414), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51381,7 +54990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51389,7 +54998,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51397,70 +55005,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36252] = 25, - ACTIONS(13), 1, + [42939] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1059), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1507), 1, - sym_expression, - STATE(1547), 1, + ACTIONS(1703), 1, + sym_identifier, + STATE(1314), 1, sym_primary_expression, - STATE(1783), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2503), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51468,7 +55076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51476,7 +55084,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51484,70 +55091,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36364] = 25, - ACTIONS(13), 1, + [43050] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1541), 1, + ACTIONS(1703), 1, sym_identifier, - STATE(1571), 1, + ACTIONS(1705), 1, + anon_sym_not, + STATE(1314), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2567), 1, + STATE(2503), 1, sym_expression, - STATE(3046), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51555,7 +55162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51563,7 +55170,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51571,70 +55177,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36476] = 25, - ACTIONS(764), 1, + [43161] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(1155), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1707), 1, sym_identifier, - STATE(1642), 1, + STATE(1646), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2533), 1, + STATE(2480), 1, sym_expression, - STATE(3102), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51642,7 +55248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51650,7 +55256,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51658,70 +55263,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36588] = 25, - ACTIONS(507), 1, + [43272] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1028), 1, sym_identifier, - ACTIONS(1015), 1, + ACTIONS(1030), 1, anon_sym_not, - STATE(1432), 1, - sym_primary_expression, - STATE(1434), 1, + STATE(1918), 1, sym_expression, - STATE(1535), 1, + STATE(1930), 1, + sym_primary_expression, + STATE(1994), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2440), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51729,7 +55334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51737,7 +55342,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51745,70 +55349,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36700] = 25, - ACTIONS(401), 1, + [43383] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(798), 1, sym_float, - STATE(1183), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + STATE(1644), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2529), 1, + STATE(2322), 1, sym_expression, - STATE(2532), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51816,7 +55420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51824,7 +55428,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51832,70 +55435,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36812] = 25, - ACTIONS(507), 1, + [43494] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_LBRACK, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1432), 1, + STATE(1039), 1, sym_primary_expression, - STATE(1484), 1, - sym_expression, - STATE(1535), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2483), 1, + sym_expression, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51903,7 +55506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51911,7 +55514,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -51919,70 +55521,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36924] = 25, - ACTIONS(507), 1, + [43605] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1635), 1, + sym_identifier, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1432), 1, + STATE(1026), 1, sym_primary_expression, - STATE(1470), 1, - sym_expression, - STATE(1535), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2489), 1, + sym_expression, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1069), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51990,7 +55592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -51998,7 +55600,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52006,7 +55607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37036] = 25, + [43716] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -52015,50 +55616,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1183), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2369), 1, - sym_expression, - STATE(2532), 1, + STATE(2268), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2371), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -52069,7 +55670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52077,7 +55678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52085,7 +55686,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52093,70 +55693,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37148] = 25, - ACTIONS(401), 1, + [43827] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2527), 1, + STATE(2222), 1, sym_expression, - STATE(2532), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52164,7 +55764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52172,7 +55772,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52180,70 +55779,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37260] = 25, - ACTIONS(401), 1, + [43938] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2519), 1, + STATE(2221), 1, sym_expression, - STATE(2532), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52251,7 +55850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52259,7 +55858,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52267,70 +55865,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37372] = 25, - ACTIONS(13), 1, + [44049] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1088), 1, sym_identifier, - ACTIONS(1059), 1, + ACTIONS(1090), 1, anon_sym_not, - STATE(1547), 1, - sym_primary_expression, - STATE(1585), 1, + STATE(1336), 1, sym_expression, - STATE(1783), 1, + STATE(1378), 1, + sym_primary_expression, + STATE(1418), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2395), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52338,7 +55936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52346,7 +55944,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52354,70 +55951,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37484] = 25, - ACTIONS(401), 1, + [44160] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1945), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2375), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2490), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52425,7 +56022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52433,7 +56030,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52441,70 +56037,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37596] = 25, - ACTIONS(13), 1, + [44271] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1059), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1500), 1, - sym_expression, - STATE(1547), 1, + ACTIONS(1653), 1, + sym_identifier, + STATE(1494), 1, sym_primary_expression, - STATE(1783), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2489), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52512,7 +56108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52520,7 +56116,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52528,70 +56123,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37708] = 25, - ACTIONS(507), 1, + [44382] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1015), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1432), 1, + ACTIONS(1703), 1, + sym_identifier, + STATE(1342), 1, sym_primary_expression, - STATE(1478), 1, - sym_expression, - STATE(1535), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2503), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52599,7 +56194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52607,7 +56202,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52615,70 +56209,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37820] = 25, - ACTIONS(876), 1, + [44493] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1145), 1, - sym_identifier, - ACTIONS(1147), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(563), 1, sym_float, - STATE(316), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1703), 1, + sym_identifier, + STATE(1343), 1, sym_primary_expression, - STATE(1090), 1, + STATE(2183), 1, sym_selector_expression, - STATE(1174), 1, - sym_expression, - STATE(2442), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2503), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52686,7 +56280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52694,7 +56288,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52702,70 +56295,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37932] = 25, - ACTIONS(401), 1, + [44604] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1703), 1, + sym_identifier, + STATE(1352), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2360), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2525), 1, + STATE(2503), 1, sym_expression, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52773,7 +56366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52781,7 +56374,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52789,70 +56381,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38044] = 25, - ACTIONS(401), 1, + [44715] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1703), 1, + sym_identifier, + STATE(1354), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2355), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2523), 1, + STATE(2503), 1, sym_expression, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52860,7 +56452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52868,7 +56460,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52876,70 +56467,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38156] = 25, - ACTIONS(13), 1, + [44826] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1059), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1525), 1, - sym_expression, - STATE(1547), 1, + ACTIONS(1703), 1, + sym_identifier, + STATE(1355), 1, sym_primary_expression, - STATE(1783), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2503), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52947,7 +56538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -52955,7 +56546,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -52963,70 +56553,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38268] = 25, - ACTIONS(401), 1, + [44937] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1703), 1, + sym_identifier, + STATE(1362), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2379), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2503), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53034,7 +56624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53042,7 +56632,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53050,70 +56639,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38380] = 25, - ACTIONS(507), 1, + [45048] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1015), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1432), 1, + ACTIONS(1703), 1, + sym_identifier, + STATE(1363), 1, sym_primary_expression, - STATE(1471), 1, - sym_expression, - STATE(1535), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2503), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53121,7 +56710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53129,7 +56718,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53137,70 +56725,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38492] = 25, - ACTIONS(507), 1, + [45159] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1015), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1432), 1, + ACTIONS(1653), 1, + sym_identifier, + STATE(1493), 1, sym_primary_expression, - STATE(1435), 1, - sym_expression, - STATE(1535), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2486), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53208,7 +56796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53216,7 +56804,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53224,70 +56811,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38604] = 25, - ACTIONS(507), 1, + [45270] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1050), 1, + anon_sym_lambda, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1295), 1, + anon_sym_not, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1432), 1, + STATE(288), 1, sym_primary_expression, - STATE(1468), 1, + STATE(315), 1, sym_expression, - STATE(1535), 1, + STATE(416), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53295,7 +56882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53303,7 +56890,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53311,17 +56897,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38716] = 25, - ACTIONS(453), 1, + [45381] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -53334,47 +56916,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - STATE(1393), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1653), 1, + sym_identifier, + STATE(1478), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2509), 1, + STATE(2486), 1, sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53382,7 +56968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53390,7 +56976,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53398,70 +56983,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38828] = 25, - ACTIONS(507), 1, + [45492] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1015), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1432), 1, + ACTIONS(1653), 1, + sym_identifier, + STATE(1477), 1, sym_primary_expression, - STATE(1474), 1, - sym_expression, - STATE(1535), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2486), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53469,7 +57054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53477,7 +57062,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53485,70 +57069,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38940] = 25, - ACTIONS(401), 1, + [45603] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1653), 1, + sym_identifier, + STATE(1476), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2522), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2486), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53556,7 +57140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53564,7 +57148,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53572,70 +57155,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39052] = 25, - ACTIONS(401), 1, + [45714] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1229), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1653), 1, + sym_identifier, + STATE(1475), 1, sym_primary_expression, - STATE(1231), 1, - sym_expression, - STATE(1312), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2486), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53643,7 +57226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53651,7 +57234,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53659,70 +57241,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39164] = 25, - ACTIONS(507), 1, + [45825] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1653), 1, sym_identifier, - STATE(1462), 1, + STATE(1474), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2507), 1, + STATE(2486), 1, sym_expression, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53730,7 +57312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53738,7 +57320,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53746,70 +57327,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39276] = 25, - ACTIONS(401), 1, + [45936] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1192), 1, - sym_expression, - STATE(1229), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1653), 1, + sym_identifier, + STATE(1472), 1, sym_primary_expression, - STATE(1312), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2486), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53817,7 +57398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53825,7 +57406,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53833,70 +57413,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39388] = 25, - ACTIONS(1091), 1, + [46047] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(1111), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1173), 1, - anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(563), 1, sym_float, - STATE(1044), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1653), 1, + sym_identifier, + STATE(1471), 1, sym_primary_expression, - STATE(1207), 1, + STATE(2183), 1, sym_selector_expression, - STATE(1964), 1, - sym_expression, - STATE(2461), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2486), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53904,7 +57484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53912,7 +57492,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -53920,70 +57499,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39500] = 25, - ACTIONS(764), 1, + [46158] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(768), 1, - anon_sym_LPAREN, - ACTIONS(772), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1295), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(1565), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_LBRACE, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - STATE(1642), 1, + STATE(189), 1, + sym_expression, + STATE(288), 1, sym_primary_expression, - STATE(2233), 1, + STATE(416), 1, sym_selector_expression, - STATE(2471), 1, - sym_expression, - STATE(2499), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3102), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53991,7 +57570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -53999,7 +57578,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -54007,70 +57585,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39612] = 25, - ACTIONS(401), 1, + [46269] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1198), 1, + ACTIONS(1249), 1, + sym_identifier, + ACTIONS(1251), 1, + anon_sym_not, + STATE(1473), 1, sym_expression, - STATE(1229), 1, + STATE(1573), 1, sym_primary_expression, - STATE(1312), 1, + STATE(1626), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2429), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54078,7 +57656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -54086,7 +57664,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -54094,70 +57671,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39724] = 25, - ACTIONS(401), 1, + [46380] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(997), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(1295), 1, anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - STATE(1191), 1, - sym_expression, - STATE(1229), 1, + STATE(288), 1, sym_primary_expression, - STATE(1312), 1, + STATE(298), 1, + sym_expression, + STATE(416), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54165,7 +57742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -54173,7 +57750,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -54181,70 +57757,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39836] = 25, - ACTIONS(401), 1, + [46491] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(997), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(1295), 1, anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - STATE(1190), 1, + STATE(232), 1, sym_expression, - STATE(1229), 1, + STATE(288), 1, sym_primary_expression, - STATE(1312), 1, + STATE(416), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54252,7 +57828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -54260,7 +57836,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -54268,70 +57843,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39948] = 25, - ACTIONS(401), 1, + [46602] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1222), 1, - sym_expression, - STATE(1229), 1, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_not, + STATE(1554), 1, sym_primary_expression, - STATE(1312), 1, + STATE(2176), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2270), 1, + sym_expression, + STATE(2414), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54339,7 +57914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -54347,7 +57922,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -54355,59 +57929,59 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40060] = 25, + [46713] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(997), 1, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1205), 1, - sym_expression, - STATE(1229), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1312), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2277), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2403), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -54418,7 +57992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54426,7 +58000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -54434,94 +58008,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [40172] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1557), 1, - sym_identifier, - STATE(1368), 1, - sym_primary_expression, - STATE(2240), 1, - sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2544), 1, - sym_expression, - STATE(3115), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1261), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(471), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -54529,70 +58015,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40284] = 25, - ACTIONS(453), 1, + [46824] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - STATE(1393), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2275), 1, + STATE(2358), 1, sym_expression, - STATE(2430), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54600,7 +58086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -54608,7 +58094,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -54616,70 +58101,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40396] = 25, - ACTIONS(401), 1, + [46935] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(997), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(1295), 1, anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - STATE(1208), 1, + STATE(193), 1, sym_expression, - STATE(1229), 1, + STATE(288), 1, sym_primary_expression, - STATE(1312), 1, + STATE(416), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54687,7 +58172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -54695,7 +58180,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -54703,685 +58187,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40508] = 4, - STATE(590), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1561), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1559), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [40578] = 4, - STATE(590), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1561), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1559), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [40648] = 4, - STATE(590), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1561), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1559), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [40718] = 4, - STATE(590), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1561), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1559), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [40788] = 4, - STATE(733), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1561), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1559), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [40858] = 4, - STATE(733), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1561), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1559), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [40928] = 4, - STATE(733), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1561), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1559), 32, - anon_sym_import, + [47046] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, + ACTIONS(1050), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [40998] = 4, - STATE(733), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1561), 26, + ACTIONS(1064), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1559), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [41068] = 25, - ACTIONS(971), 1, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(973), 1, - anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(983), 1, + ACTIONS(1295), 1, anon_sym_not, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1505), 1, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, - anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1575), 1, sym_float, - STATE(1556), 1, - sym_primary_expression, - STATE(1570), 1, + STATE(233), 1, sym_expression, - STATE(1811), 1, + STATE(288), 1, + sym_primary_expression, + STATE(416), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1902), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(991), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1865), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1866), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, + STATE(518), 3, sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41180] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, - anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(983), 1, - anon_sym_not, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1505), 1, - anon_sym_LPAREN, - ACTIONS(1507), 1, - anon_sym_LBRACK, - ACTIONS(1509), 1, - anon_sym_LBRACE, - ACTIONS(1511), 1, - anon_sym_QMARK_DOT, - ACTIONS(1515), 1, - anon_sym_DQUOTE, - ACTIONS(1517), 1, - sym_float, - STATE(1556), 1, - sym_primary_expression, - STATE(1602), 1, - sym_expression, - STATE(1811), 1, - sym_selector_expression, - STATE(2458), 1, - sym_dotted_name, - STATE(3070), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1876), 2, sym_subscript, sym_call, - ACTIONS(1513), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55389,7 +58258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -55397,7 +58266,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -55405,70 +58273,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41292] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, + [47157] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(983), 1, - anon_sym_not, - ACTIONS(993), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1505), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(563), 1, sym_float, - STATE(1556), 1, + ACTIONS(1010), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_not, + STATE(1554), 1, sym_primary_expression, - STATE(1560), 1, - sym_expression, - STATE(1811), 1, + STATE(2176), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2265), 1, + sym_expression, + STATE(2414), 1, sym_dotted_name, - STATE(3070), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55476,7 +58344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -55484,7 +58352,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -55492,70 +58359,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41404] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, + [47268] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(983), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(993), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1505), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1633), 1, sym_float, - STATE(1556), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1629), 1, - sym_expression, - STATE(1811), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2385), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55563,7 +58430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -55571,7 +58438,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -55579,70 +58445,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41516] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, + [47379] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(983), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(993), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1505), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(563), 1, sym_float, - STATE(1556), 1, + STATE(1360), 1, sym_primary_expression, - STATE(1611), 1, - sym_expression, - STATE(1811), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2462), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55650,7 +58516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -55658,7 +58524,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -55666,70 +58531,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41628] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, + [47490] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(983), 1, - anon_sym_not, - ACTIONS(993), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1505), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1295), 1, + anon_sym_not, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, - anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1575), 1, sym_float, - STATE(1556), 1, + STATE(288), 1, sym_primary_expression, - STATE(1574), 1, + STATE(295), 1, sym_expression, - STATE(1811), 1, + STATE(416), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55737,7 +58602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -55745,7 +58610,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -55753,70 +58617,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41740] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, + [47601] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(983), 1, - anon_sym_not, - ACTIONS(993), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1505), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(563), 1, sym_float, - STATE(1556), 1, + ACTIONS(1653), 1, + sym_identifier, + ACTIONS(1709), 1, + anon_sym_not, + STATE(1458), 1, sym_primary_expression, - STATE(1623), 1, - sym_expression, - STATE(1811), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2486), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55824,7 +58688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -55832,7 +58696,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -55840,70 +58703,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41852] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, + [47712] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(983), 1, - anon_sym_not, - ACTIONS(993), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1505), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(563), 1, sym_float, - STATE(1556), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1653), 1, + sym_identifier, + STATE(1458), 1, sym_primary_expression, - STATE(1591), 1, - sym_expression, - STATE(1811), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2486), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55911,7 +58774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -55919,7 +58782,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -55927,12 +58789,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41964] = 25, - ACTIONS(453), 1, + [47823] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -55946,51 +58808,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1201), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1557), 1, + ACTIONS(1703), 1, sym_identifier, - STATE(1418), 1, + STATE(1376), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2544), 1, + STATE(2503), 1, sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55998,7 +58860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -56006,7 +58868,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -56014,12 +58875,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42076] = 25, - ACTIONS(453), 1, + [47934] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -56033,51 +58894,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1557), 1, - sym_identifier, - ACTIONS(1563), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1418), 1, + ACTIONS(1703), 1, + sym_identifier, + STATE(1375), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2544), 1, + STATE(2489), 1, sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56085,7 +58946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -56093,7 +58954,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -56101,70 +58961,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42188] = 25, - ACTIONS(401), 1, + [48045] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2464), 1, + STATE(2447), 1, sym_expression, - STATE(2532), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56172,7 +59032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -56180,7 +59040,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -56188,26 +59047,11 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42300] = 8, - ACTIONS(1239), 1, - anon_sym_not, - ACTIONS(1255), 1, - anon_sym_is, - STATE(530), 1, - aux_sym_comparison_operator_repeat1, + [48156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1231), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1253), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 22, + ACTIONS(1711), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -56228,9 +59072,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1225), 27, + ACTIONS(1713), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -56238,6 +59086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -56249,103 +59098,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [42378] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [48223] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1715), 26, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1529), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, - anon_sym_DQUOTE, - ACTIONS(1539), 1, - sym_float, - STATE(1183), 1, - sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2410), 1, - sym_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(3077), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1717), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1350), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [42490] = 25, + [48290] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1719), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1721), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [48357] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -56354,50 +59248,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1183), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2463), 1, + STATE(2343), 1, sym_expression, - STATE(2532), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -56408,7 +59302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56416,7 +59310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -56424,7 +59318,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -56432,7 +59325,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42602] = 25, + [48468] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1723), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1725), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [48535] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -56441,50 +59398,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1183), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2399), 1, - sym_expression, - STATE(2532), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2397), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -56495,7 +59452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56503,7 +59460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -56511,7 +59468,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -56519,70 +59475,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42714] = 25, - ACTIONS(401), 1, + [48646] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1275), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1649), 1, sym_float, - STATE(1183), 1, + STATE(1019), 1, sym_primary_expression, - STATE(2153), 1, + STATE(1022), 1, + sym_expression, + STATE(1054), 1, sym_selector_expression, - STATE(2336), 1, + STATE(2437), 1, sym_dotted_name, - STATE(2462), 1, - sym_expression, - STATE(3077), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56590,7 +59546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -56598,7 +59554,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -56606,101 +59561,334 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42826] = 25, - ACTIONS(453), 1, + [48757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1727), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1729), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(459), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(463), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(473), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [48824] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1731), 26, sym_string_start, - ACTIONS(545), 1, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1733), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(547), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [48891] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1735), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - STATE(1393), 1, - sym_primary_expression, - STATE(2210), 1, - sym_selector_expression, - STATE(2277), 1, - sym_expression, - STATE(2430), 1, - sym_dotted_name, - STATE(3115), 1, - sym_quant_op, + ACTIONS(1737), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [48958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + ACTIONS(1739), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1741), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(471), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [42938] = 25, - ACTIONS(453), 1, + [49025] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1743), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1745), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(459), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [49092] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(545), 1, sym_identifier, @@ -56716,47 +59904,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - STATE(1393), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2280), 1, + STATE(2446), 1, sym_expression, - STATE(2430), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56764,7 +59952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -56772,7 +59960,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -56780,157 +59967,326 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43050] = 25, - ACTIONS(453), 1, + [49203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1747), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1749), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(459), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(473), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [49270] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1751), 26, sym_string_start, - ACTIONS(547), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1043), 1, + ACTIONS(1753), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1045), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [49337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1751), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1753), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - STATE(1412), 1, - sym_primary_expression, - STATE(1415), 1, - sym_expression, - STATE(1424), 1, - sym_selector_expression, - STATE(2494), 1, - sym_dotted_name, - STATE(3115), 1, - sym_quant_op, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [49404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + ACTIONS(1755), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1757), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(471), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [43162] = 25, - ACTIONS(900), 1, + [49471] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, - ACTIONS(922), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(395), 1, + STATE(1360), 1, sym_primary_expression, - STATE(396), 1, - sym_expression, - STATE(544), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2444), 1, + sym_expression, + STATE(2457), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56938,7 +60294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -56946,7 +60302,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -56954,70 +60309,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43274] = 25, - ACTIONS(401), 1, + [49582] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1525), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2335), 1, - sym_dotted_name, - STATE(2459), 1, + STATE(2438), 1, sym_expression, - STATE(3077), 1, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57025,7 +60380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57033,7 +60388,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57041,13 +60395,17 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43386] = 25, - ACTIONS(453), 1, + [49693] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, + ACTIONS(545), 1, + sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -57060,51 +60418,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1557), 1, - sym_identifier, - STATE(1411), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2544), 1, + STATE(2430), 1, sym_expression, - STATE(3115), 1, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57112,7 +60466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57120,7 +60474,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57128,13 +60481,17 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43498] = 25, - ACTIONS(453), 1, + [49804] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, + ACTIONS(545), 1, + sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -57147,51 +60504,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1557), 1, - sym_identifier, - STATE(1407), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2544), 1, + STATE(2225), 1, sym_expression, - STATE(3115), 1, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57199,7 +60552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57207,7 +60560,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57215,18 +60567,86 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43610] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, + [49915] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1761), 26, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1759), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [49982] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, anon_sym_LBRACE, ACTIONS(557), 1, anon_sym_QMARK_DOT, @@ -57234,51 +60654,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1557), 1, - sym_identifier, - STATE(1406), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2544), 1, + STATE(2428), 1, sym_expression, - STATE(3115), 1, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57286,7 +60702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57294,7 +60710,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57302,70 +60717,326 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43722] = 25, - ACTIONS(453), 1, + [50093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1763), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1765), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(459), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(473), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [50160] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1767), 26, sym_string_start, - ACTIONS(547), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1201), 1, + ACTIONS(1769), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1557), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(1405), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [50227] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1767), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1769), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [50294] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1771), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1773), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [50361] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1265), 1, + anon_sym_DOT, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1275), 1, + anon_sym_not, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1637), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_LBRACK, + ACTIONS(1641), 1, + anon_sym_LBRACE, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(1647), 1, + anon_sym_DQUOTE, + ACTIONS(1649), 1, + sym_float, + STATE(1019), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1033), 1, + sym_expression, + STATE(1054), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2437), 1, sym_dotted_name, - STATE(2544), 1, - sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57373,7 +61044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57381,7 +61052,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57389,70 +61059,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43834] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, + [50472] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1775), 26, sym_string_start, - ACTIONS(547), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1201), 1, + ACTIONS(1777), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1557), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(1404), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [50539] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1265), 1, + anon_sym_DOT, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1275), 1, + anon_sym_not, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1637), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_LBRACK, + ACTIONS(1641), 1, + anon_sym_LBRACE, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(1647), 1, + anon_sym_DQUOTE, + ACTIONS(1649), 1, + sym_float, + STATE(1019), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1023), 1, + sym_expression, + STATE(1054), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2437), 1, sym_dotted_name, - STATE(2544), 1, - sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57460,7 +61194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57468,7 +61202,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57476,70 +61209,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43946] = 25, - ACTIONS(453), 1, + [50650] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1275), 1, + anon_sym_not, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1557), 1, - sym_identifier, - STATE(1403), 1, + STATE(1017), 1, + sym_expression, + STATE(1019), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1054), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2437), 1, sym_dotted_name, - STATE(2544), 1, - sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57547,7 +61280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57555,7 +61288,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57563,12 +61295,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44058] = 25, - ACTIONS(453), 1, + [50761] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -57582,51 +61314,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1557), 1, + ACTIONS(970), 1, sym_identifier, - STATE(1402), 1, + ACTIONS(972), 1, + anon_sym_not, + STATE(1937), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2544), 1, + STATE(2506), 1, sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57634,7 +61366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57642,7 +61374,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57650,70 +61381,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44170] = 25, - ACTIONS(900), 1, + [50872] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, - ACTIONS(922), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(368), 1, - sym_expression, - STATE(395), 1, + STATE(1360), 1, sym_primary_expression, - STATE(544), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2364), 1, + sym_expression, + STATE(2457), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57721,7 +61452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57729,7 +61460,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57737,70 +61467,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44282] = 25, - ACTIONS(900), 1, + [50983] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(924), 1, + ACTIONS(1275), 1, anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1649), 1, sym_float, - STATE(385), 1, + STATE(1011), 1, sym_expression, - STATE(395), 1, + STATE(1019), 1, sym_primary_expression, - STATE(544), 1, + STATE(1054), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2437), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57808,7 +61538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57816,7 +61546,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57824,70 +61553,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44394] = 25, - ACTIONS(453), 1, + [51094] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(1275), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - STATE(1393), 1, + STATE(1003), 1, + sym_expression, + STATE(1019), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1054), 1, sym_selector_expression, - STATE(2276), 1, - sym_expression, - STATE(2430), 1, + STATE(2437), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57895,7 +61624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57903,7 +61632,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57911,70 +61639,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44506] = 25, - ACTIONS(453), 1, + [51205] = 25, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(1275), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - STATE(1393), 1, + STATE(1019), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1034), 1, + sym_expression, + STATE(1054), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2437), 1, sym_dotted_name, - STATE(2444), 1, - sym_expression, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57982,7 +61710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -57990,7 +61718,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -57998,70 +61725,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44618] = 25, - ACTIONS(900), 1, + [51316] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(372), 1, - sym_expression, - STATE(395), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(1779), 1, + anon_sym_not, + STATE(1937), 1, sym_primary_expression, - STATE(544), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2506), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58069,7 +61796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58077,7 +61804,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58085,70 +61811,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44730] = 25, - ACTIONS(876), 1, + [51427] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1145), 1, - sym_identifier, - ACTIONS(1147), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(563), 1, sym_float, - STATE(316), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1940), 1, sym_primary_expression, - STATE(327), 1, - sym_expression, - STATE(1090), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2506), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58156,7 +61882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58164,7 +61890,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58172,70 +61897,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44842] = 25, - ACTIONS(900), 1, + [51538] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(375), 1, - sym_expression, - STATE(395), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1942), 1, sym_primary_expression, - STATE(544), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2506), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58243,7 +61968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58251,7 +61976,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58259,70 +61983,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44954] = 25, - ACTIONS(507), 1, + [51649] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1453), 1, + sym_identifier, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + STATE(340), 1, sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2443), 1, + STATE(385), 1, sym_expression, - STATE(2496), 1, + STATE(1074), 1, + sym_selector_expression, + STATE(2435), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(755), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58330,7 +62054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58338,7 +62062,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58346,70 +62069,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45066] = 25, - ACTIONS(900), 1, + [51760] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, - ACTIONS(922), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(343), 1, - sym_expression, - STATE(395), 1, + STATE(1360), 1, sym_primary_expression, - STATE(544), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2423), 1, + sym_expression, + STATE(2457), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58417,7 +62140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58425,7 +62148,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58433,70 +62155,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45178] = 25, - ACTIONS(900), 1, + [51871] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, - ACTIONS(922), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(319), 1, - sym_expression, - STATE(395), 1, + STATE(1360), 1, sym_primary_expression, - STATE(544), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2420), 1, + sym_expression, + STATE(2457), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58504,7 +62226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58512,7 +62234,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58520,70 +62241,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45290] = 25, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [51982] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1781), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(788), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(790), 1, + ACTIONS(1783), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [52049] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1155), 1, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, + anon_sym_DQUOTE, + ACTIONS(563), 1, + sym_float, + ACTIONS(1088), 1, sym_identifier, - STATE(1642), 1, + ACTIONS(1090), 1, + anon_sym_not, + STATE(1356), 1, + sym_expression, + STATE(1378), 1, sym_primary_expression, - STATE(2233), 1, + STATE(1418), 1, sym_selector_expression, - STATE(2426), 1, - sym_expression, - STATE(2499), 1, + STATE(2395), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58591,7 +62376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58599,7 +62384,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58607,70 +62391,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45402] = 25, - ACTIONS(876), 1, + [52160] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1145), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1147), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(563), 1, sym_float, - STATE(316), 1, + STATE(1360), 1, sym_primary_expression, - STATE(351), 1, - sym_expression, - STATE(1090), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2442), 1, + STATE(2226), 1, + sym_expression, + STATE(2457), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58678,7 +62462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58686,7 +62470,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58694,70 +62477,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45514] = 25, - ACTIONS(401), 1, + [52271] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1144), 1, + sym_expression, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2493), 1, - sym_expression, - STATE(2532), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58765,7 +62548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58773,7 +62556,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58781,70 +62563,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45626] = 25, - ACTIONS(401), 1, + [52382] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2383), 1, + STATE(2415), 1, sym_expression, - STATE(2532), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58852,7 +62634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58860,7 +62642,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58868,70 +62649,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45738] = 25, - ACTIONS(876), 1, + [52493] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1145), 1, - sym_identifier, - ACTIONS(1147), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(563), 1, sym_float, - STATE(316), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1943), 1, sym_primary_expression, - STATE(1090), 1, + STATE(2183), 1, sym_selector_expression, - STATE(1158), 1, - sym_expression, - STATE(2442), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2506), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58939,7 +62720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -58947,7 +62728,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -58955,70 +62735,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45850] = 25, - ACTIONS(401), 1, + [52604] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2495), 1, + STATE(2411), 1, sym_expression, - STATE(2532), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59026,7 +62806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59034,7 +62814,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59042,157 +62821,326 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45962] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(876), 1, + [52715] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1785), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1787), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(882), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(886), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(896), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [52782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1789), 26, sym_string_start, - ACTIONS(1481), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1483), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1493), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - STATE(373), 1, - sym_expression, - STATE(394), 1, - sym_primary_expression, - STATE(614), 1, - sym_selector_expression, - STATE(2441), 1, - sym_dotted_name, - STATE(2976), 1, - sym_quant_op, + ACTIONS(1791), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [52849] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + ACTIONS(1671), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1669), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(894), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(999), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [46074] = 25, - ACTIONS(401), 1, + [52916] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1793), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1795), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(411), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(419), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1165), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1527), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [52983] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1948), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2380), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2506), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59200,7 +63148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59208,7 +63156,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59216,70 +63163,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46186] = 25, - ACTIONS(401), 1, + [53094] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1797), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1799), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(411), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(419), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1525), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1527), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [53161] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1951), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2326), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2498), 1, + STATE(2506), 1, sym_expression, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59287,7 +63298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59295,7 +63306,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59303,70 +63313,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46298] = 25, - ACTIONS(900), 1, + [53272] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1801), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1803), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(906), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(924), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [53339] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(314), 1, + ACTIONS(1249), 1, + sym_identifier, + ACTIONS(1251), 1, + anon_sym_not, + STATE(1142), 1, sym_expression, - STATE(395), 1, + STATE(1573), 1, sym_primary_expression, - STATE(544), 1, + STATE(1626), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2429), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59374,7 +63448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59382,7 +63456,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59390,70 +63463,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46410] = 25, - ACTIONS(507), 1, + [53450] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2394), 1, + STATE(2386), 1, sym_expression, - STATE(2496), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59461,7 +63534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59469,7 +63542,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59477,70 +63549,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46522] = 25, - ACTIONS(876), 1, + [53561] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1145), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1147), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1633), 1, sym_float, - STATE(316), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1090), 1, + STATE(2116), 1, sym_selector_expression, - STATE(1159), 1, - sym_expression, - STATE(2442), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2378), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59548,7 +63620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59556,7 +63628,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59564,12 +63635,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46634] = 25, - ACTIONS(453), 1, + [53672] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -59583,51 +63654,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1073), 1, + ACTIONS(970), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1537), 1, + STATE(1954), 1, sym_primary_expression, - STATE(1599), 1, - sym_expression, - STATE(1709), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2506), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59635,7 +63706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59643,7 +63714,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59651,70 +63721,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46746] = 25, - ACTIONS(453), 1, + [53783] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1453), 1, + sym_identifier, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(1073), 1, - sym_identifier, - ACTIONS(1075), 1, - anon_sym_not, - STATE(1537), 1, + STATE(340), 1, sym_primary_expression, - STATE(1566), 1, + STATE(387), 1, sym_expression, - STATE(1709), 1, + STATE(1074), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2435), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(755), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59722,7 +63792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59730,7 +63800,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59738,70 +63807,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46858] = 25, - ACTIONS(453), 1, + [53894] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1453), 1, + sym_identifier, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(1073), 1, - sym_identifier, - ACTIONS(1075), 1, - anon_sym_not, - STATE(1537), 1, + STATE(340), 1, sym_primary_expression, - STATE(1554), 1, - sym_expression, - STATE(1709), 1, + STATE(1074), 1, sym_selector_expression, - STATE(2449), 1, + STATE(1128), 1, + sym_expression, + STATE(2435), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(755), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59809,7 +63878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59817,7 +63886,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59825,12 +63893,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46970] = 25, - ACTIONS(453), 1, + [54005] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -59844,51 +63912,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1557), 1, + ACTIONS(1249), 1, sym_identifier, - STATE(1374), 1, + ACTIONS(1251), 1, + anon_sym_not, + STATE(1144), 1, + sym_expression, + STATE(1573), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1626), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2429), 1, sym_dotted_name, - STATE(2544), 1, - sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59896,7 +63964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59904,7 +63972,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59912,12 +63979,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47082] = 25, - ACTIONS(453), 1, + [54116] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -59931,51 +63998,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1557), 1, + ACTIONS(1249), 1, sym_identifier, - STATE(1395), 1, + ACTIONS(1251), 1, + anon_sym_not, + STATE(1480), 1, + sym_expression, + STATE(1573), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1626), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2429), 1, sym_dotted_name, - STATE(2542), 1, - sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59983,7 +64050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -59991,7 +64058,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -59999,12 +64065,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47194] = 25, - ACTIONS(453), 1, + [54227] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -60018,51 +64084,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1073), 1, + ACTIONS(1249), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(1251), 1, anon_sym_not, - STATE(1537), 1, - sym_primary_expression, - STATE(1558), 1, + STATE(1465), 1, sym_expression, - STATE(1709), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1626), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2429), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60070,7 +64136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -60078,7 +64144,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -60086,12 +64151,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47306] = 25, - ACTIONS(453), 1, + [54338] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -60105,51 +64170,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1073), 1, + ACTIONS(970), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(972), 1, anon_sym_not, - STATE(1537), 1, + STATE(1957), 1, sym_primary_expression, - STATE(1548), 1, - sym_expression, - STATE(1709), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2506), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60157,7 +64222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -60165,7 +64230,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -60173,140 +64237,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47418] = 8, - ACTIONS(1574), 1, - anon_sym_not, - ACTIONS(1580), 1, - anon_sym_is, - STATE(590), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1571), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1577), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1569), 22, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1567), 27, - anon_sym_import, + [54449] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - sym_integer, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [47496] = 25, - ACTIONS(876), 1, - anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1217), 1, anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, - anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(1583), 1, - sym_identifier, - STATE(370), 1, + STATE(267), 1, sym_primary_expression, - STATE(2240), 1, + STATE(386), 1, + sym_expression, + STATE(418), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2426), 1, sym_dotted_name, - STATE(2542), 1, - sym_expression, - STATE(2976), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60314,7 +64308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -60322,7 +64316,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -60330,70 +64323,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47608] = 25, - ACTIONS(876), 1, + [54560] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(1583), 1, + ACTIONS(1249), 1, sym_identifier, - STATE(369), 1, + ACTIONS(1251), 1, + anon_sym_not, + STATE(1511), 1, + sym_expression, + STATE(1573), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1626), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2429), 1, sym_dotted_name, - STATE(2562), 1, - sym_expression, - STATE(2976), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60401,7 +64394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -60409,7 +64402,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -60417,12 +64409,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47720] = 25, - ACTIONS(453), 1, + [54671] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -60436,51 +64428,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1073), 1, + ACTIONS(1249), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(1251), 1, anon_sym_not, - STATE(1537), 1, - sym_primary_expression, - STATE(1605), 1, + STATE(1459), 1, sym_expression, - STATE(1709), 1, + STATE(1573), 1, + sym_primary_expression, + STATE(1626), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2429), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60488,7 +64480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -60496,7 +64488,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -60504,12 +64495,12 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47832] = 25, - ACTIONS(453), 1, + [54782] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, @@ -60523,51 +64514,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1073), 1, + ACTIONS(1249), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(1251), 1, anon_sym_not, - STATE(1178), 1, + STATE(1481), 1, sym_expression, - STATE(1537), 1, + STATE(1573), 1, sym_primary_expression, - STATE(1709), 1, + STATE(1626), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2429), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1791), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60575,7 +64566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -60583,7 +64574,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -60591,70 +64581,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47944] = 25, - ACTIONS(876), 1, + [54893] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1145), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1147), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1633), 1, sym_float, - STATE(316), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1090), 1, + STATE(2116), 1, sym_selector_expression, - STATE(1160), 1, + STATE(2312), 1, sym_expression, - STATE(2442), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60662,7 +64652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -60670,7 +64660,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -60678,70 +64667,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48056] = 25, - ACTIONS(876), 1, + [55004] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1583), 1, - sym_identifier, - STATE(365), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2562), 1, + STATE(2374), 1, sym_expression, - STATE(2976), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60749,7 +64738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -60757,7 +64746,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -60765,70 +64753,198 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48168] = 25, - ACTIONS(401), 1, + [55115] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1805), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1807), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(411), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(419), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(431), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [55182] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1809), 26, sym_string_start, - ACTIONS(1525), 1, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1811), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [55249] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1142), 1, + sym_expression, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2357), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2501), 1, - sym_expression, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60836,7 +64952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -60844,7 +64960,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -60852,70 +64967,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48280] = 25, - ACTIONS(876), 1, + [55360] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1583), 1, - sym_identifier, - STATE(364), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2562), 1, + STATE(2319), 1, sym_expression, - STATE(2976), 1, + STATE(2366), 1, + sym_dotted_name, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60923,7 +65038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -60931,7 +65046,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -60939,70 +65053,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48392] = 25, - ACTIONS(876), 1, + [55471] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1583), 1, - sym_identifier, - STATE(363), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2272), 1, sym_dotted_name, - STATE(2562), 1, + STATE(2372), 1, sym_expression, - STATE(2976), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61010,7 +65124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61018,7 +65132,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61026,70 +65139,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48504] = 25, - ACTIONS(876), 1, + [55582] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(882), 1, - anon_sym_lambda, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1583), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - STATE(362), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2562), 1, + STATE(2324), 1, sym_expression, - STATE(2976), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61097,7 +65210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61105,7 +65218,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61113,70 +65225,390 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48616] = 25, - ACTIONS(876), 1, + [55693] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1815), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1813), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(882), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(896), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [55760] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1817), 26, sym_string_start, - ACTIONS(1201), 1, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1819), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1481), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [55827] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1821), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1823), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [55894] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1825), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1483), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1493), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1583), 1, + ACTIONS(1827), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [55961] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1829), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1831), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [56028] = 25, + ACTIONS(1201), 1, + anon_sym_DOT, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1453), 1, sym_identifier, - STATE(361), 1, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_LBRACK, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1553), 1, + anon_sym_DQUOTE, + ACTIONS(1555), 1, + sym_float, + STATE(340), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1074), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2562), 1, + STATE(1131), 1, sym_expression, - STATE(2976), 1, + STATE(2435), 1, + sym_dotted_name, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(755), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61184,7 +65616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61192,7 +65624,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61200,70 +65631,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48728] = 25, - ACTIONS(876), 1, + [56139] = 25, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1331), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(1583), 1, - sym_identifier, - STATE(360), 1, + STATE(1470), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2166), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2562), 1, + STATE(2303), 1, sym_expression, - STATE(2976), 1, + STATE(2466), 1, + sym_dotted_name, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(1850), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61271,7 +65702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61279,7 +65710,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61287,70 +65717,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48840] = 25, - ACTIONS(876), 1, + [56250] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(1583), 1, + ACTIONS(970), 1, sym_identifier, - STATE(359), 1, + ACTIONS(972), 1, + anon_sym_not, + STATE(1962), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2562), 1, + STATE(2506), 1, sym_expression, - STATE(2976), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61358,7 +65788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61366,7 +65796,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61374,70 +65803,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48952] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(876), 1, + [56361] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(886), 1, + ACTIONS(1217), 1, anon_sym_not, - ACTIONS(896), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1481), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, - anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1555), 1, sym_float, - STATE(387), 1, - sym_expression, - STATE(394), 1, + STATE(267), 1, sym_primary_expression, - STATE(614), 1, + STATE(385), 1, + sym_expression, + STATE(418), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2426), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61445,7 +65874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61453,7 +65882,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61461,70 +65889,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49064] = 25, - ACTIONS(876), 1, + [56472] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1833), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1835), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(882), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1145), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1147), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [56539] = 25, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1633), 1, sym_float, - STATE(316), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1090), 1, + STATE(2116), 1, sym_selector_expression, - STATE(1161), 1, - sym_expression, - STATE(2442), 1, + STATE(2263), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2370), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61532,7 +66024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61540,7 +66032,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61548,70 +66039,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49176] = 25, - ACTIONS(876), 1, + [56650] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1145), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1147), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(563), 1, sym_float, - STATE(316), 1, + STATE(1360), 1, sym_primary_expression, - STATE(1090), 1, + STATE(2154), 1, sym_selector_expression, - STATE(1157), 1, + STATE(2448), 1, sym_expression, - STATE(2442), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61619,7 +66110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61627,7 +66118,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61635,70 +66125,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49288] = 25, - ACTIONS(453), 1, + [56761] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1217), 1, + anon_sym_not, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(1073), 1, - sym_identifier, - ACTIONS(1075), 1, - anon_sym_not, - STATE(1169), 1, - sym_expression, - STATE(1537), 1, + STATE(267), 1, sym_primary_expression, - STATE(1709), 1, + STATE(387), 1, + sym_expression, + STATE(418), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2426), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61706,7 +66196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61714,7 +66204,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61722,70 +66211,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49400] = 25, - ACTIONS(876), 1, + [56872] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(1217), 1, + anon_sym_not, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1481), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, - anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(1583), 1, - sym_identifier, - ACTIONS(1585), 1, - anon_sym_not, - STATE(357), 1, + STATE(267), 1, sym_primary_expression, - STATE(2240), 1, + STATE(277), 1, + sym_expression, + STATE(418), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2426), 1, sym_dotted_name, - STATE(2562), 1, - sym_expression, - STATE(2976), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61793,7 +66282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61801,7 +66290,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61809,70 +66297,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49512] = 25, - ACTIONS(453), 1, + [56983] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - STATE(1393), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1441), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2281), 1, + STATE(2365), 1, sym_expression, - STATE(2430), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61880,7 +66368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61888,7 +66376,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -61896,157 +66383,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49624] = 25, - ACTIONS(876), 1, - anon_sym_DOT, - ACTIONS(882), 1, - anon_sym_lambda, - ACTIONS(896), 1, + [57094] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1815), 26, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1481), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1483), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 1, - sym_float, - ACTIONS(1583), 1, - sym_identifier, - STATE(357), 1, - sym_primary_expression, - STATE(2240), 1, - sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2562), 1, - sym_expression, - STATE(2976), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1813), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(894), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(999), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [49736] = 25, - ACTIONS(973), 1, + [57161] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1177), 1, - sym_identifier, - ACTIONS(1179), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(798), 1, sym_float, - STATE(1544), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + STATE(1644), 1, sym_primary_expression, - STATE(2219), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2320), 1, - sym_expression, - STATE(2470), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2394), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62054,7 +66518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -62062,7 +66526,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -62070,70 +66533,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49848] = 25, - ACTIONS(401), 1, + [57272] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2330), 1, + STATE(2450), 1, sym_expression, - STATE(2532), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62141,7 +66604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -62149,7 +66612,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -62157,13 +66619,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49960] = 3, + [57383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 26, - sym__dedent, + ACTIONS(1761), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -62188,14 +66650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1587), 33, + ACTIONS(1759), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -62222,140 +66683,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [50028] = 8, - ACTIONS(1292), 1, - anon_sym_not, - ACTIONS(1308), 1, - anon_sym_is, - STATE(526), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1284), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1306), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 22, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1225), 27, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [50106] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [57450] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1543), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - STATE(1058), 1, - sym_expression, - STATE(1062), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1075), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2398), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62363,7 +66754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -62371,7 +66762,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -62379,70 +66769,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50218] = 25, - ACTIONS(1091), 1, + [57561] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, sym_identifier, - ACTIONS(1173), 1, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1217), 1, anon_sym_not, - ACTIONS(1543), 1, - anon_sym_LPAREN, + ACTIONS(1227), 1, + sym_string_start, ACTIONS(1545), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(1547), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1549), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, ACTIONS(1553), 1, anon_sym_DQUOTE, ACTIONS(1555), 1, sym_float, - STATE(1041), 1, + STATE(250), 1, sym_expression, - STATE(1044), 1, + STATE(267), 1, sym_primary_expression, - STATE(1207), 1, + STATE(418), 1, sym_selector_expression, - STATE(2461), 1, + STATE(2426), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1150), 2, - sym_subscript, - sym_call, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62450,7 +66840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -62458,7 +66848,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -62466,70 +66855,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50330] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [57672] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1543), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - STATE(1039), 1, - sym_expression, - STATE(1062), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1075), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2335), 1, + sym_expression, + STATE(2366), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62537,7 +66926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -62545,7 +66934,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -62553,70 +66941,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50442] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [57783] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1543), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(563), 1, sym_float, - STATE(1062), 1, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1945), 1, sym_primary_expression, - STATE(1066), 1, - sym_expression, - STATE(1075), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2478), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62624,7 +67012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -62632,7 +67020,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -62640,135 +67027,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50554] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1593), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1591), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [50622] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [57894] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1543), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - STATE(1040), 1, - sym_expression, - STATE(1062), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1075), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2406), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62776,7 +67098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -62784,7 +67106,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -62792,70 +67113,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50734] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [58005] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1217), 1, anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1543), 1, - anon_sym_LPAREN, ACTIONS(1545), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(1547), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1549), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, ACTIONS(1553), 1, anon_sym_DQUOTE, ACTIONS(1555), 1, sym_float, - STATE(1048), 1, + STATE(198), 1, sym_expression, - STATE(1062), 1, + STATE(267), 1, sym_primary_expression, - STATE(1075), 1, + STATE(418), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2426), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62863,7 +67184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -62871,7 +67192,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -62879,70 +67199,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50846] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [58116] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1543), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - STATE(1054), 1, - sym_expression, - STATE(1062), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1075), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2344), 1, + sym_expression, + STATE(2366), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62950,7 +67270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -62958,7 +67278,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -62966,70 +67285,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50958] = 25, - ACTIONS(453), 1, + [58227] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(1217), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1555), 1, sym_float, - STATE(1393), 1, + STATE(252), 1, + sym_expression, + STATE(267), 1, sym_primary_expression, - STATE(2210), 1, + STATE(418), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2426), 1, sym_dotted_name, - STATE(2514), 1, - sym_expression, - STATE(3115), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63037,7 +67356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -63045,7 +67364,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -63053,70 +67371,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51070] = 25, - ACTIONS(507), 1, + [58338] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1217), 1, + anon_sym_not, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + STATE(267), 1, sym_primary_expression, - STATE(2213), 1, + STATE(270), 1, + sym_expression, + STATE(418), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2426), 1, sym_dotted_name, - STATE(2516), 1, - sym_expression, - STATE(3087), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63124,7 +67442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -63132,7 +67450,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -63140,70 +67457,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51182] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [58449] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1543), 1, - anon_sym_LPAREN, ACTIONS(1545), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(1547), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1549), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, ACTIONS(1553), 1, anon_sym_DQUOTE, ACTIONS(1555), 1, sym_float, - STATE(1036), 1, - sym_expression, - STATE(1062), 1, + ACTIONS(1577), 1, + sym_identifier, + STATE(380), 1, sym_primary_expression, - STATE(1075), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2489), 1, + sym_expression, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63211,7 +67528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -63219,7 +67536,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -63227,70 +67543,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51294] = 25, - ACTIONS(1091), 1, + [58560] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(1111), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1173), 1, - anon_sym_not, - ACTIONS(1543), 1, - anon_sym_LPAREN, ACTIONS(1545), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(1547), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1549), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, ACTIONS(1553), 1, anon_sym_DQUOTE, ACTIONS(1555), 1, sym_float, - STATE(1036), 1, - sym_expression, - STATE(1044), 1, + ACTIONS(1577), 1, + sym_identifier, + STATE(378), 1, sym_primary_expression, - STATE(1207), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2461), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2505), 1, + sym_expression, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1150), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63298,7 +67614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -63306,7 +67622,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -63314,70 +67629,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51406] = 25, - ACTIONS(1091), 1, + [58671] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1111), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(1173), 1, - anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - STATE(1044), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1207), 1, + STATE(2116), 1, sym_selector_expression, - STATE(1962), 1, - sym_expression, - STATE(2461), 1, + STATE(2267), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2412), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63385,7 +67700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -63393,7 +67708,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -63401,70 +67715,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51518] = 25, - ACTIONS(764), 1, + [58782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1701), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1699), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(768), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [58849] = 25, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1155), 1, + ACTIONS(684), 1, sym_identifier, - STATE(1642), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2499), 1, - sym_dotted_name, - STATE(2510), 1, + STATE(2321), 1, sym_expression, - STATE(3102), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63472,7 +67850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -63480,7 +67858,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -63488,70 +67865,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51630] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [58960] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1543), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - STATE(1060), 1, - sym_expression, - STATE(1062), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1075), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2280), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2416), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63559,7 +67936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -63567,7 +67944,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -63575,78 +67951,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51742] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1597), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1595), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [51810] = 3, + [59071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 26, - sym__dedent, + ACTIONS(1697), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -63671,14 +67982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1599), 33, + ACTIONS(1695), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -63705,70 +68015,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [51878] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [59138] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1543), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(563), 1, sym_float, - STATE(1041), 1, - sym_expression, - STATE(1062), 1, + STATE(1360), 1, sym_primary_expression, - STATE(1075), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2433), 1, + sym_expression, + STATE(2457), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63776,7 +68086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -63784,7 +68094,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -63792,70 +68101,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51990] = 25, - ACTIONS(453), 1, + [59249] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1045), 1, - anon_sym_not, - STATE(1387), 1, - sym_expression, - STATE(1412), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1441), 1, sym_primary_expression, - STATE(1424), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2434), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63863,7 +68172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -63871,7 +68180,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -63879,70 +68187,390 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52102] = 25, - ACTIONS(453), 1, + [59360] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1581), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1579), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(459), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(463), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(473), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59427] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1601), 26, sym_string_start, - ACTIONS(545), 1, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1599), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(547), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59494] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - STATE(1393), 1, + ACTIONS(1603), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59561] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1607), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1613), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1611), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59695] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_not, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1585), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, + anon_sym_QMARK_DOT, + ACTIONS(1595), 1, + anon_sym_DQUOTE, + ACTIONS(1597), 1, + sym_float, + STATE(1453), 1, sym_primary_expression, - STATE(2210), 1, - sym_selector_expression, - STATE(2278), 1, + STATE(1538), 1, sym_expression, - STATE(2430), 1, + STATE(1645), 1, + sym_selector_expression, + STATE(2424), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63950,7 +68578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -63958,7 +68586,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -63966,70 +68593,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52214] = 25, - ACTIONS(453), 1, + [59806] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - STATE(1178), 1, - sym_expression, - STATE(1393), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + STATE(1644), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2452), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64037,7 +68664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -64045,7 +68672,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -64053,70 +68679,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52326] = 25, - ACTIONS(1091), 1, + [59917] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1617), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1615), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(1097), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1171), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1173), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59984] = 25, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1543), 1, - anon_sym_LPAREN, + ACTIONS(1201), 1, + anon_sym_DOT, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1227), 1, + sym_string_start, ACTIONS(1545), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(1547), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1549), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, ACTIONS(1553), 1, anon_sym_DQUOTE, ACTIONS(1555), 1, sym_float, - STATE(1044), 1, + ACTIONS(1577), 1, + sym_identifier, + STATE(373), 1, sym_primary_expression, - STATE(1207), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2039), 1, - sym_expression, - STATE(2461), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2505), 1, + sym_expression, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1150), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64124,7 +68814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -64132,7 +68822,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -64140,70 +68829,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52438] = 25, - ACTIONS(401), 1, + [60095] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1555), 1, sym_float, - STATE(1183), 1, + ACTIONS(1577), 1, + sym_identifier, + STATE(372), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2435), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2505), 1, + sym_expression, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64211,7 +68900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -64219,7 +68908,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -64227,70 +68915,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52550] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(876), 1, + [60206] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(886), 1, - anon_sym_not, - ACTIONS(896), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1481), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, - anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1555), 1, sym_float, - STATE(393), 1, - sym_expression, - STATE(394), 1, + ACTIONS(1577), 1, + sym_identifier, + STATE(371), 1, sym_primary_expression, - STATE(614), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2505), 1, + sym_expression, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64298,7 +68986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -64306,7 +68994,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -64314,136 +69001,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52662] = 4, - ACTIONS(1344), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1342), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1340), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + [60317] = 25, + ACTIONS(972), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [52732] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(876), 1, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(886), 1, - anon_sym_not, - ACTIONS(896), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1481), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, - anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1555), 1, sym_float, - STATE(379), 1, - sym_expression, - STATE(394), 1, + ACTIONS(1577), 1, + sym_identifier, + STATE(370), 1, sym_primary_expression, - STATE(614), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2505), 1, + sym_expression, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64451,7 +69072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -64459,7 +69080,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -64467,70 +69087,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52844] = 25, - ACTIONS(1091), 1, + [60428] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(1111), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1543), 1, - anon_sym_LPAREN, ACTIONS(1545), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(1547), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1549), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, ACTIONS(1553), 1, anon_sym_DQUOTE, ACTIONS(1555), 1, sym_float, - ACTIONS(1603), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(1057), 1, + STATE(369), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2542), 1, + STATE(2505), 1, sym_expression, - STATE(2987), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64538,7 +69158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -64546,7 +69166,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -64554,70 +69173,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52956] = 25, - ACTIONS(401), 1, + [60539] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1138), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1597), 1, sym_float, - STATE(1183), 1, + STATE(1453), 1, sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2421), 1, + STATE(1544), 1, sym_expression, - STATE(2532), 1, + STATE(1645), 1, + sym_selector_expression, + STATE(2424), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64625,7 +69244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -64633,7 +69252,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -64641,70 +69259,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53068] = 25, - ACTIONS(401), 1, + [60650] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1138), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1597), 1, sym_float, - STATE(1183), 1, + STATE(1453), 1, sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2432), 1, + STATE(1497), 1, sym_expression, - STATE(2532), 1, + STATE(1645), 1, + sym_selector_expression, + STATE(2424), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64712,7 +69330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -64720,7 +69338,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -64728,70 +69345,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53180] = 25, - ACTIONS(1091), 1, + [60761] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1138), 1, anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(1603), 1, - sym_identifier, - STATE(1056), 1, + STATE(1453), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1518), 1, + sym_expression, + STATE(1645), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2424), 1, sym_dotted_name, - STATE(2563), 1, - sym_expression, - STATE(2987), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64799,7 +69416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -64807,7 +69424,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -64815,135 +69431,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53292] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1367), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1362), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + [60872] = 25, + ACTIONS(972), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [53360] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(876), 1, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(886), 1, - anon_sym_not, - ACTIONS(896), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1481), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, - anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1555), 1, sym_float, - STATE(389), 1, - sym_expression, - STATE(394), 1, + ACTIONS(1577), 1, + sym_identifier, + STATE(368), 1, sym_primary_expression, - STATE(614), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2505), 1, + sym_expression, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64951,7 +69502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -64959,7 +69510,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -64967,7 +69517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53472] = 25, + [60983] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -64976,50 +69526,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1183), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2422), 1, - sym_expression, - STATE(2532), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2459), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -65030,7 +69580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65038,7 +69588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -65046,7 +69596,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -65054,70 +69603,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53584] = 25, - ACTIONS(874), 1, + [61094] = 25, + ACTIONS(1126), 1, sym_identifier, - ACTIONS(876), 1, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(886), 1, + ACTIONS(1138), 1, anon_sym_not, - ACTIONS(896), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1481), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1597), 1, sym_float, - STATE(380), 1, - sym_expression, - STATE(394), 1, + STATE(1453), 1, sym_primary_expression, - STATE(614), 1, + STATE(1489), 1, + sym_expression, + STATE(1645), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2424), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65125,7 +69674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -65133,7 +69682,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -65141,70 +69689,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53696] = 25, - ACTIONS(401), 1, + [61205] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1138), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1597), 1, sym_float, - STATE(1183), 1, + STATE(1453), 1, sym_primary_expression, - STATE(2153), 1, + STATE(1517), 1, + sym_expression, + STATE(1645), 1, sym_selector_expression, - STATE(2367), 1, + STATE(2424), 1, sym_dotted_name, - STATE(2428), 1, - sym_expression, - STATE(3077), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65212,7 +69760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -65220,7 +69768,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -65228,200 +69775,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53808] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1607), 26, - sym__dedent, + [61316] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_not, + ACTIONS(1148), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1585), 1, anon_sym_LPAREN, + ACTIONS(1587), 1, anon_sym_LBRACK, + ACTIONS(1589), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1595), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(1597), 1, sym_float, - ACTIONS(1605), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [53876] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1611), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1609), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [53944] = 25, - ACTIONS(1091), 1, - anon_sym_DOT, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1173), 1, - anon_sym_not, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LBRACE, - ACTIONS(1549), 1, - anon_sym_QMARK_DOT, - ACTIONS(1553), 1, - anon_sym_DQUOTE, - ACTIONS(1555), 1, - sym_float, - STATE(1044), 1, + STATE(1453), 1, sym_primary_expression, - STATE(1207), 1, - sym_selector_expression, - STATE(1960), 1, + STATE(1500), 1, sym_expression, - STATE(2461), 1, + STATE(1645), 1, + sym_selector_expression, + STATE(2424), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65429,7 +69846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -65437,7 +69854,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -65445,70 +69861,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54056] = 25, - ACTIONS(401), 1, + [61427] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1207), 1, + sym_identifier, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1217), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1555), 1, sym_float, - STATE(1183), 1, + STATE(215), 1, + sym_expression, + STATE(267), 1, sym_primary_expression, - STATE(2153), 1, + STATE(418), 1, sym_selector_expression, - STATE(2349), 1, + STATE(2426), 1, sym_dotted_name, - STATE(2477), 1, - sym_expression, - STATE(3077), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(881), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65516,7 +69932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -65524,7 +69940,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -65532,70 +69947,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54168] = 25, - ACTIONS(453), 1, + [61538] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1453), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1555), 1, sym_float, - STATE(1393), 1, + STATE(340), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1074), 1, sym_selector_expression, - STATE(2430), 1, - sym_dotted_name, - STATE(2486), 1, + STATE(1130), 1, sym_expression, - STATE(3115), 1, + STATE(2435), 1, + sym_dotted_name, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(755), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65603,7 +70018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -65611,7 +70026,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -65619,70 +70033,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54280] = 25, - ACTIONS(507), 1, + [61649] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, + anon_sym_lambda, + ACTIONS(1227), 1, + sym_string_start, + ACTIONS(1453), 1, + sym_identifier, + ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1545), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + STATE(340), 1, sym_primary_expression, - STATE(2213), 1, + STATE(1074), 1, sym_selector_expression, - STATE(2440), 1, + STATE(1129), 1, sym_expression, - STATE(2496), 1, + STATE(2435), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(755), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65690,7 +70104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -65698,7 +70112,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -65706,157 +70119,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54392] = 25, - ACTIONS(1091), 1, - anon_sym_DOT, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1111), 1, + [61760] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1665), 26, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1543), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1545), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, - anon_sym_DQUOTE, - ACTIONS(1555), 1, - sym_float, - ACTIONS(1603), 1, - sym_identifier, - STATE(1052), 1, - sym_primary_expression, - STATE(2240), 1, - sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2563), 1, - sym_expression, - STATE(2987), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1663), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1109), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1118), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [54504] = 25, - ACTIONS(1091), 1, + [61827] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(1111), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1543), 1, - anon_sym_LPAREN, ACTIONS(1545), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(1547), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1549), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, ACTIONS(1553), 1, anon_sym_DQUOTE, ACTIONS(1555), 1, sym_float, - ACTIONS(1603), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(1051), 1, + ACTIONS(1837), 1, + anon_sym_not, + STATE(355), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2563), 1, + STATE(2505), 1, sym_expression, - STATE(2987), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65864,7 +70254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -65872,7 +70262,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -65880,70 +70269,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54616] = 25, - ACTIONS(1091), 1, + [61938] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(1111), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1543), 1, - anon_sym_LPAREN, ACTIONS(1545), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(1547), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(1549), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, ACTIONS(1553), 1, anon_sym_DQUOTE, ACTIONS(1555), 1, sym_float, - ACTIONS(1603), 1, + ACTIONS(1577), 1, sym_identifier, - STATE(1050), 1, + STATE(355), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2563), 1, + STATE(2505), 1, sym_expression, - STATE(2987), 1, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(761), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65951,7 +70340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -65959,7 +70348,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -65967,70 +70355,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54728] = 25, - ACTIONS(1091), 1, + [62049] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1603), 1, - sym_identifier, - STATE(1049), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2563), 1, + STATE(2360), 1, sym_expression, - STATE(2987), 1, + STATE(2366), 1, + sym_dotted_name, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66038,7 +70426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66046,7 +70434,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66054,70 +70441,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54840] = 25, - ACTIONS(1091), 1, + [62160] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1111), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1116), 1, anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1603), 1, - sym_identifier, - STATE(1027), 1, + STATE(1150), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1193), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2417), 1, sym_dotted_name, - STATE(2563), 1, - sym_expression, - STATE(2987), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66125,7 +70512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66133,7 +70520,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66141,70 +70527,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54952] = 25, - ACTIONS(1091), 1, + [62271] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1669), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(1097), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1201), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1543), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [62338] = 25, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1603), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1707), 1, sym_identifier, - STATE(1043), 1, + STATE(1679), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2563), 1, + STATE(2480), 1, sym_expression, - STATE(2987), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66212,7 +70662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66220,7 +70670,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66228,70 +70677,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55064] = 25, - ACTIONS(1091), 1, + [62449] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1603), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1707), 1, sym_identifier, - STATE(1047), 1, + ACTIONS(1839), 1, + anon_sym_not, + STATE(1679), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2563), 1, + STATE(2480), 1, sym_expression, - STATE(2987), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66299,7 +70748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66307,7 +70756,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66315,70 +70763,136 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55176] = 25, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [62560] = 5, + ACTIONS(1841), 1, + anon_sym_in, + ACTIONS(1843), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1683), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(788), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(790), 1, + ACTIONS(1681), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [62631] = 25, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1155), 1, + ACTIONS(1114), 1, sym_identifier, - STATE(1642), 1, + ACTIONS(1116), 1, + anon_sym_not, + ACTIONS(1621), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_LBRACE, + ACTIONS(1627), 1, + anon_sym_QMARK_DOT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + sym_float, + STATE(1150), 1, sym_primary_expression, - STATE(2233), 1, + STATE(1189), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2417), 1, sym_dotted_name, - STATE(2502), 1, - sym_expression, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66386,7 +70900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66394,7 +70908,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66402,70 +70915,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55288] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [62742] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1543), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1116), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - STATE(1062), 1, + STATE(1150), 1, sym_primary_expression, - STATE(1065), 1, + STATE(1168), 1, sym_expression, - STATE(1075), 1, + STATE(1276), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2417), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66473,7 +70986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66481,7 +70994,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66489,70 +71001,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55400] = 25, - ACTIONS(453), 1, + [62853] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1116), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - STATE(1169), 1, - sym_expression, - STATE(1393), 1, + STATE(1150), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1165), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2417), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66560,7 +71072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66568,7 +71080,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66576,70 +71087,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55512] = 25, - ACTIONS(1091), 1, + [62964] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1111), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1171), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1173), 1, - anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - STATE(1044), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1207), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2007), 1, - sym_expression, - STATE(2461), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2460), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66647,7 +71158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66655,7 +71166,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66663,70 +71173,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55624] = 25, - ACTIONS(1091), 1, + [63075] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1675), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1673), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(1097), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1173), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1543), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [63142] = 25, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(798), 1, sym_float, - STATE(1044), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + STATE(1644), 1, sym_primary_expression, - STATE(1207), 1, + STATE(2179), 1, sym_selector_expression, - STATE(1970), 1, + STATE(2333), 1, sym_expression, - STATE(2461), 1, + STATE(2369), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66734,7 +71308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66742,7 +71316,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66750,70 +71323,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55736] = 25, - ACTIONS(1091), 1, + [63253] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1543), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1603), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, sym_identifier, - ACTIONS(1613), 1, - anon_sym_not, - STATE(1045), 1, + STATE(1644), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2563), 1, + STATE(2342), 1, sym_expression, - STATE(2987), 1, + STATE(2369), 1, + sym_dotted_name, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66821,7 +71394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66829,7 +71402,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66837,70 +71409,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55848] = 25, - ACTIONS(1091), 1, + [63364] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1603), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1096), 1, sym_identifier, - STATE(1045), 1, + ACTIONS(1098), 1, + anon_sym_not, + STATE(1657), 1, + sym_expression, + STATE(1670), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1892), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2379), 1, sym_dotted_name, - STATE(2563), 1, - sym_expression, - STATE(2987), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66908,7 +71480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -66916,7 +71488,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -66924,13 +71495,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55960] = 3, + [63475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 26, - sym__dedent, + ACTIONS(1679), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -66955,14 +71526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1615), 33, + ACTIONS(1677), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -66989,265 +71559,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [56028] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1621), 26, - sym__dedent, + [63542] = 25, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(431), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1116), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, + ACTIONS(1623), 1, anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1619), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [56096] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1625), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1623), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [56164] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1629), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1627), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [56232] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1045), 1, - anon_sym_not, - STATE(1343), 1, - sym_expression, - STATE(1412), 1, + STATE(1150), 1, sym_primary_expression, - STATE(1424), 1, + STATE(1151), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2417), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67255,7 +71630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -67263,7 +71638,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -67271,70 +71645,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56344] = 25, - ACTIONS(453), 1, + [63653] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(972), 1, anon_sym_not, - STATE(1999), 1, + ACTIONS(1707), 1, + sym_identifier, + STATE(1660), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2542), 1, + STATE(2480), 1, sym_expression, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67342,7 +71716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -67350,7 +71724,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -67358,135 +71731,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56456] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1633), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [63764] = 25, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, anon_sym_LPAREN, + ACTIONS(782), 1, anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(794), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(798), 1, sym_float, - ACTIONS(1631), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(972), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [56524] = 25, - ACTIONS(874), 1, + ACTIONS(1707), 1, sym_identifier, - ACTIONS(876), 1, - anon_sym_DOT, - ACTIONS(882), 1, - anon_sym_lambda, - ACTIONS(886), 1, - anon_sym_not, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1481), 1, - anon_sym_LPAREN, - ACTIONS(1483), 1, - anon_sym_LBRACK, - ACTIONS(1485), 1, - anon_sym_LBRACE, - ACTIONS(1487), 1, - anon_sym_QMARK_DOT, - ACTIONS(1491), 1, - anon_sym_DQUOTE, - ACTIONS(1493), 1, - sym_float, - STATE(381), 1, - sym_expression, - STATE(394), 1, + STATE(1661), 1, sym_primary_expression, - STATE(614), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2480), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67494,7 +71802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -67502,7 +71810,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -67510,70 +71817,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56636] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(876), 1, + [63875] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(882), 1, - anon_sym_lambda, - ACTIONS(886), 1, - anon_sym_not, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1481), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(798), 1, sym_float, - STATE(392), 1, - sym_expression, - STATE(394), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1707), 1, + sym_identifier, + STATE(1662), 1, sym_primary_expression, - STATE(614), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2480), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67581,7 +71888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -67589,7 +71896,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -67597,70 +71903,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56748] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(876), 1, + [63986] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(882), 1, - anon_sym_lambda, - ACTIONS(886), 1, - anon_sym_not, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1481), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(798), 1, sym_float, - STATE(351), 1, - sym_expression, - STATE(394), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1707), 1, + sym_identifier, + STATE(1664), 1, sym_primary_expression, - STATE(614), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2480), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67668,7 +71974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -67676,7 +71982,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -67684,70 +71989,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56860] = 25, - ACTIONS(453), 1, + [64097] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1209), 1, - sym_identifier, - ACTIONS(1211), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(972), 1, anon_sym_not, - STATE(1169), 1, - sym_expression, - STATE(1538), 1, + ACTIONS(1707), 1, + sym_identifier, + STATE(1665), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2480), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67755,7 +72060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -67763,7 +72068,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -67771,70 +72075,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56972] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(876), 1, + [64208] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(882), 1, - anon_sym_lambda, - ACTIONS(886), 1, - anon_sym_not, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1481), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(798), 1, sym_float, - STATE(327), 1, - sym_expression, - STATE(394), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1707), 1, + sym_identifier, + STATE(1668), 1, sym_primary_expression, - STATE(614), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2480), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67842,7 +72146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -67850,7 +72154,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -67858,70 +72161,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57084] = 25, - ACTIONS(453), 1, + [64319] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1209), 1, - sym_identifier, - ACTIONS(1211), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(972), 1, anon_sym_not, - STATE(1538), 1, + ACTIONS(1707), 1, + sym_identifier, + STATE(1671), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2356), 1, - sym_expression, - STATE(2475), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2480), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67929,7 +72232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -67937,7 +72240,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -67945,70 +72247,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57196] = 25, - ACTIONS(764), 1, + [64430] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1116), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - STATE(1642), 1, + STATE(1150), 1, sym_primary_expression, - STATE(2233), 1, - sym_selector_expression, - STATE(2397), 1, + STATE(1161), 1, sym_expression, - STATE(2499), 1, + STATE(1276), 1, + sym_selector_expression, + STATE(2417), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68016,7 +72318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -68024,7 +72326,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -68032,70 +72333,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57308] = 25, - ACTIONS(764), 1, + [64541] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1116), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1635), 1, - sym_identifier, - STATE(1689), 1, + STATE(1150), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1171), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2417), 1, sym_dotted_name, - STATE(2549), 1, - sym_expression, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68103,7 +72404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -68111,7 +72412,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -68119,70 +72419,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57420] = 25, - ACTIONS(453), 1, + [64652] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1209), 1, - sym_identifier, - ACTIONS(1211), 1, - anon_sym_not, - STATE(1178), 1, - sym_expression, - STATE(1538), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2475), 1, + STATE(2356), 1, + sym_expression, + STATE(2366), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68190,7 +72490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -68198,7 +72498,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -68206,181 +72505,201 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57532] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, + [64763] = 5, + ACTIONS(1845), 1, + anon_sym_in, + ACTIONS(1847), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1683), 26, sym_string_start, - ACTIONS(547), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - sym_float, - ACTIONS(1209), 1, - sym_identifier, - ACTIONS(1211), 1, - anon_sym_not, - STATE(1538), 1, - sym_primary_expression, - STATE(2218), 1, - sym_selector_expression, - STATE(2333), 1, - sym_expression, - STATE(2475), 1, - sym_dotted_name, - STATE(3115), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1681), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(471), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [57644] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, + [64834] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1691), 26, sym_string_start, - ACTIONS(547), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1073), 1, - sym_identifier, - ACTIONS(1075), 1, + ACTIONS(1689), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - STATE(1532), 1, - sym_expression, - STATE(1537), 1, - sym_primary_expression, - STATE(1709), 1, - sym_selector_expression, - STATE(2449), 1, - sym_dotted_name, - STATE(3115), 1, - sym_quant_op, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [64901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + ACTIONS(1683), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1681), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(471), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [57756] = 25, + [64968] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -68389,50 +72708,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1183), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2368), 1, - sym_expression, - STATE(2532), 1, + STATE(2293), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2461), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -68443,7 +72762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68451,7 +72770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -68459,7 +72778,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -68467,70 +72785,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57868] = 25, - ACTIONS(453), 1, + [65079] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1209), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(1106), 1, anon_sym_not, - STATE(1538), 1, + STATE(1404), 1, + sym_expression, + STATE(1412), 1, sym_primary_expression, - STATE(2218), 1, + STATE(1521), 1, sym_selector_expression, - STATE(2317), 1, - sym_expression, - STATE(2475), 1, + STATE(2391), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68538,7 +72856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -68546,7 +72864,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -68554,70 +72871,200 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57980] = 25, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1059), 1, - anon_sym_not, - STATE(1547), 1, - sym_primary_expression, - STATE(1568), 1, - sym_expression, - STATE(1783), 1, - sym_selector_expression, - STATE(2526), 1, - sym_dotted_name, - STATE(3046), 1, - sym_quant_op, + [65190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + ACTIONS(948), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(880), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [65257] = 5, + ACTIONS(1841), 1, + anon_sym_in, + ACTIONS(1843), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1683), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1681), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [65328] = 25, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_LBRACK, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, + anon_sym_LBRACE, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(531), 1, + anon_sym_DQUOTE, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_not, + STATE(1411), 1, + sym_expression, + STATE(1412), 1, + sym_primary_expression, + STATE(1521), 1, + sym_selector_expression, + STATE(2391), 1, + sym_dotted_name, + STATE(3110), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68625,7 +73072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -68633,7 +73080,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -68641,70 +73087,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58092] = 25, - ACTIONS(453), 1, + [65439] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1637), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(1104), 1, sym_identifier, - STATE(1520), 1, + ACTIONS(1106), 1, + anon_sym_not, + STATE(1412), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1449), 1, + sym_expression, + STATE(1521), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2391), 1, sym_dotted_name, - STATE(2542), 1, - sym_expression, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68712,7 +73158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -68720,7 +73166,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -68728,70 +73173,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58204] = 25, - ACTIONS(453), 1, + [65550] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1637), 1, - sym_identifier, - STATE(1519), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2291), 1, sym_dotted_name, - STATE(2543), 1, + STATE(2463), 1, sym_expression, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68799,7 +73244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -68807,7 +73252,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -68815,70 +73259,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58316] = 25, - ACTIONS(453), 1, + [65661] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - STATE(1393), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_not, + STATE(1412), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1425), 1, + sym_expression, + STATE(1521), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2391), 1, sym_dotted_name, - STATE(2484), 1, - sym_expression, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68886,7 +73330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -68894,7 +73338,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -68902,7 +73345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58428] = 25, + [65772] = 25, ACTIONS(9), 1, sym_identifier, ACTIONS(13), 1, @@ -68925,36 +73368,36 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(180), 1, anon_sym_LBRACK, - STATE(1604), 1, + STATE(1454), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2487), 1, - sym_dotted_name, - STATE(2520), 1, + STATE(2273), 1, sym_expression, - STATE(3046), 1, + STATE(2467), 1, + sym_dotted_name, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -68965,7 +73408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68973,7 +73416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -68981,7 +73424,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -68989,70 +73431,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58540] = 25, - ACTIONS(453), 1, + [65883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1683), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1681), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(459), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [65950] = 25, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1209), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(1106), 1, anon_sym_not, - STATE(1538), 1, + STATE(1412), 1, sym_primary_expression, - STATE(2218), 1, - sym_selector_expression, - STATE(2354), 1, + STATE(1430), 1, sym_expression, - STATE(2475), 1, + STATE(1521), 1, + sym_selector_expression, + STATE(2391), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69060,7 +73566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69068,7 +73574,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69076,70 +73581,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58652] = 25, - ACTIONS(453), 1, + [66061] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1637), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(1104), 1, sym_identifier, - STATE(1505), 1, + ACTIONS(1106), 1, + anon_sym_not, + STATE(1412), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1422), 1, + sym_expression, + STATE(1521), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2391), 1, sym_dotted_name, - STATE(2543), 1, - sym_expression, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69147,7 +73652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69155,7 +73660,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69163,70 +73667,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58764] = 25, - ACTIONS(453), 1, + [66172] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1637), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(1104), 1, sym_identifier, - STATE(1504), 1, + ACTIONS(1106), 1, + anon_sym_not, + STATE(1412), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1450), 1, + sym_expression, + STATE(1521), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2391), 1, sym_dotted_name, - STATE(2543), 1, - sym_expression, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69234,7 +73738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69242,7 +73746,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69250,70 +73753,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58876] = 25, - ACTIONS(453), 1, + [66283] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1201), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1637), 1, + ACTIONS(1707), 1, sym_identifier, - STATE(1503), 1, + STATE(1675), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2543), 1, + STATE(2480), 1, sym_expression, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69321,7 +73824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69329,7 +73832,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69337,70 +73839,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58988] = 25, - ACTIONS(453), 1, + [66394] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1201), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1637), 1, + ACTIONS(1707), 1, sym_identifier, - STATE(1502), 1, + STATE(1588), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2543), 1, + STATE(2489), 1, sym_expression, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1985), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69408,7 +73910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69416,7 +73918,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69424,70 +73925,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59100] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, + [66505] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1833), 26, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1201), 1, + ACTIONS(1835), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1637), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(1501), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [66572] = 25, + ACTIONS(1265), 1, + anon_sym_DOT, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1637), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_LBRACK, + ACTIONS(1641), 1, + anon_sym_LBRACE, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(1647), 1, + anon_sym_DQUOTE, + ACTIONS(1649), 1, + sym_float, + STATE(999), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1194), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2543), 1, + STATE(1912), 1, sym_expression, - STATE(3115), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69495,7 +74060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69503,7 +74068,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69511,70 +74075,262 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59212] = 25, - ACTIONS(453), 1, + [66683] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1829), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1831), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(459), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(473), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [66750] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1825), 26, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1201), 1, + ACTIONS(1827), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1637), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [66817] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1821), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1823), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [66884] = 25, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1096), 1, sym_identifier, - STATE(1499), 1, + ACTIONS(1098), 1, + anon_sym_not, + STATE(1670), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1686), 1, + sym_expression, + STATE(1892), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2379), 1, sym_dotted_name, - STATE(2543), 1, - sym_expression, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69582,7 +74338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69590,7 +74346,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69598,13 +74353,81 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59324] = 25, - ACTIONS(453), 1, + [66995] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1817), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1819), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(459), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [67062] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, + ACTIONS(545), 1, + sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -69617,51 +74440,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1637), 1, - sym_identifier, - STATE(1498), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2543), 1, + STATE(2474), 1, sym_expression, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69669,7 +74488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69677,7 +74496,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69685,70 +74503,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59436] = 25, - ACTIONS(453), 1, + [67173] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1073), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(1098), 1, anon_sym_not, - STATE(1537), 1, + STATE(1670), 1, sym_primary_expression, - STATE(1561), 1, + STATE(1683), 1, sym_expression, - STATE(1709), 1, + STATE(1892), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2379), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69756,7 +74574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69764,7 +74582,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69772,70 +74589,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59548] = 25, - ACTIONS(453), 1, + [67284] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1209), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(1211), 1, + ACTIONS(1098), 1, anon_sym_not, - STATE(1538), 1, + STATE(1658), 1, + sym_expression, + STATE(1670), 1, sym_primary_expression, - STATE(2218), 1, + STATE(1892), 1, sym_selector_expression, - STATE(2337), 1, - sym_expression, - STATE(2475), 1, + STATE(2379), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69843,7 +74660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69851,7 +74668,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69859,70 +74675,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59660] = 25, - ACTIONS(453), 1, + [67395] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1209), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1211), 1, - anon_sym_not, - STATE(1538), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2319), 1, - sym_expression, - STATE(2475), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2472), 1, + sym_expression, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69930,7 +74746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -69938,7 +74754,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -69946,70 +74761,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59772] = 25, - ACTIONS(453), 1, + [67506] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1637), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(1639), 1, + ACTIONS(1098), 1, anon_sym_not, - STATE(1614), 1, + STATE(1670), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1687), 1, + sym_expression, + STATE(1892), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2379), 1, sym_dotted_name, - STATE(2543), 1, - sym_expression, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70017,7 +74832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -70025,7 +74840,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -70033,70 +74847,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59884] = 25, - ACTIONS(453), 1, + [67617] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1201), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1637), 1, + ACTIONS(1693), 1, sym_identifier, - STATE(1614), 1, + STATE(1578), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2543), 1, + STATE(2494), 1, sym_expression, - STATE(3115), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70104,7 +74918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -70112,7 +74926,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -70120,70 +74933,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59996] = 25, - ACTIONS(453), 1, + [67728] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1127), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1098), 1, anon_sym_not, - STATE(2040), 1, - sym_primary_expression, - STATE(2044), 1, + STATE(1597), 1, sym_expression, - STATE(2046), 1, + STATE(1670), 1, + sym_primary_expression, + STATE(1892), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2379), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70191,7 +75004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -70199,7 +75012,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -70207,135 +75019,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60108] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1589), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1587), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [60176] = 25, - ACTIONS(453), 1, + [67839] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1127), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1098), 1, anon_sym_not, - STATE(1967), 1, - sym_expression, - STATE(2040), 1, + STATE(1670), 1, sym_primary_expression, - STATE(2046), 1, + STATE(1689), 1, + sym_expression, + STATE(1892), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2379), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70343,7 +75090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -70351,7 +75098,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -70359,70 +75105,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60288] = 25, - ACTIONS(453), 1, + [67950] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1043), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(1045), 1, + ACTIONS(1098), 1, anon_sym_not, - STATE(1389), 1, + STATE(1663), 1, sym_expression, - STATE(1412), 1, + STATE(1670), 1, sym_primary_expression, - STATE(1424), 1, + STATE(1892), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2379), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1946), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70430,7 +75176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -70438,7 +75184,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -70446,70 +75191,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60400] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, + [68061] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(53), 1, sym_float, - STATE(311), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(1693), 1, + sym_identifier, + ACTIONS(1849), 1, + anon_sym_not, + STATE(1578), 1, sym_primary_expression, - STATE(314), 1, - sym_expression, - STATE(1144), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2494), 1, + sym_expression, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70517,7 +75262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -70525,7 +75270,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -70533,13 +75277,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60512] = 3, + [68172] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 26, + ACTIONS(1809), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -70564,14 +75308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1591), 33, + ACTIONS(1811), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -70598,157 +75341,134 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [60580] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, + [68239] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1805), 26, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - sym_float, - ACTIONS(1127), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_not, - STATE(1966), 1, - sym_expression, - STATE(2040), 1, - sym_primary_expression, - STATE(2046), 1, - sym_selector_expression, - STATE(2452), 1, - sym_dotted_name, - STATE(3115), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1807), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(471), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [60692] = 25, - ACTIONS(13), 1, + [68306] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(1059), 1, - anon_sym_not, - STATE(1547), 1, + STATE(1644), 1, sym_primary_expression, - STATE(1551), 1, - sym_expression, - STATE(1783), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2359), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70756,7 +75476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -70764,7 +75484,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -70772,70 +75491,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60804] = 25, - ACTIONS(9), 1, + [68417] = 25, + ACTIONS(1263), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1275), 1, + anon_sym_not, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1637), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_LBRACK, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + STATE(1001), 1, + sym_expression, + STATE(1019), 1, sym_primary_expression, - STATE(2230), 1, + STATE(1054), 1, sym_selector_expression, - STATE(2351), 1, - sym_expression, - STATE(2487), 1, + STATE(2437), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1072), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70843,7 +75562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -70851,7 +75570,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -70859,70 +75577,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60916] = 25, - ACTIONS(453), 1, + [68528] = 25, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1127), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_not, - STATE(1965), 1, - sym_expression, - STATE(2040), 1, + STATE(999), 1, sym_primary_expression, - STATE(2046), 1, + STATE(1194), 1, sym_selector_expression, - STATE(2452), 1, + STATE(1978), 1, + sym_expression, + STATE(2421), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70930,7 +75648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -70938,7 +75656,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -70946,70 +75663,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61028] = 25, - ACTIONS(453), 1, + [68639] = 25, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1127), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_not, - STATE(2040), 1, + STATE(999), 1, sym_primary_expression, - STATE(2043), 1, + STATE(1033), 1, sym_expression, - STATE(2046), 1, + STATE(1194), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71017,7 +75734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -71025,7 +75742,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -71033,70 +75749,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61140] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, + [68750] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(920), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(311), 1, - sym_primary_expression, - STATE(319), 1, - sym_expression, + ACTIONS(1088), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, STATE(1144), 1, + sym_expression, + STATE(1378), 1, + sym_primary_expression, + STATE(1418), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2395), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71104,7 +75820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -71112,7 +75828,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -71120,70 +75835,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61252] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, + [68861] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(920), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(311), 1, + ACTIONS(1088), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(1350), 1, + sym_expression, + STATE(1378), 1, sym_primary_expression, - STATE(1144), 1, + STATE(1418), 1, sym_selector_expression, - STATE(1168), 1, - sym_expression, - STATE(2448), 1, + STATE(2395), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71191,7 +75906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -71199,7 +75914,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -71207,70 +75921,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61364] = 25, - ACTIONS(900), 1, + [68972] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(321), 1, + ACTIONS(1088), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(1338), 1, sym_expression, - STATE(395), 1, + STATE(1378), 1, sym_primary_expression, - STATE(544), 1, + STATE(1418), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2395), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71278,7 +75992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -71286,7 +76000,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -71294,70 +76007,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61476] = 25, - ACTIONS(453), 1, + [69083] = 25, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1331), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_not, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(1127), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_not, - STATE(1178), 1, - sym_expression, - STATE(2040), 1, + STATE(1470), 1, sym_primary_expression, - STATE(2046), 1, + STATE(1538), 1, + sym_expression, + STATE(2166), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2466), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1850), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71365,7 +76078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -71373,7 +76086,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -71381,70 +76093,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61588] = 25, - ACTIONS(453), 1, + [69194] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1127), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, sym_identifier, - ACTIONS(1129), 1, - anon_sym_not, - STATE(1169), 1, - sym_expression, - STATE(2040), 1, + STATE(1644), 1, sym_primary_expression, - STATE(2046), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2436), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71452,7 +76164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -71460,7 +76172,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -71468,70 +76179,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61700] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [69305] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2479), 1, - sym_expression, - STATE(2487), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2427), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71539,7 +76250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -71547,7 +76258,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -71555,13 +76265,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61812] = 3, + [69416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 26, + ACTIONS(1801), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -71586,14 +76296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1595), 33, + ACTIONS(1803), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -71620,13 +76329,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [61880] = 3, + [69483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 26, + ACTIONS(1797), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -71651,14 +76360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1599), 33, + ACTIONS(1799), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -71685,70 +76393,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [61948] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, + [69550] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(920), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(311), 1, + ACTIONS(1088), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(1330), 1, + sym_expression, + STATE(1378), 1, sym_primary_expression, - STATE(1144), 1, + STATE(1418), 1, sym_selector_expression, - STATE(1167), 1, - sym_expression, - STATE(2448), 1, + STATE(2395), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71756,7 +76464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -71764,7 +76472,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -71772,70 +76479,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62060] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [69661] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + ACTIONS(1088), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(1339), 1, + sym_expression, + STATE(1378), 1, sym_primary_expression, - STATE(2230), 1, + STATE(1418), 1, sym_selector_expression, - STATE(2362), 1, - sym_expression, - STATE(2487), 1, + STATE(2395), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71843,7 +76550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -71851,7 +76558,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -71859,70 +76565,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62172] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [69772] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1508), 1, + ACTIONS(1088), 1, + sym_identifier, + ACTIONS(1090), 1, + anon_sym_not, + STATE(1371), 1, sym_expression, - STATE(1604), 1, + STATE(1378), 1, sym_primary_expression, - STATE(2230), 1, + STATE(1418), 1, sym_selector_expression, - STATE(2487), 1, + STATE(2395), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1467), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71930,7 +76636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -71938,7 +76644,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -71946,70 +76651,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62284] = 25, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [69883] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1793), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, - anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - STATE(1642), 1, - sym_primary_expression, - STATE(2233), 1, - sym_selector_expression, - STATE(2417), 1, - sym_expression, - STATE(2499), 1, - sym_dotted_name, - STATE(3102), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1976), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(786), 5, - sym_integer, - sym_true, - sym_false, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1795), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [69950] = 25, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, + sym_float, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(1096), 1, + sym_identifier, + ACTIONS(1098), 1, + anon_sym_not, + STATE(1670), 1, + sym_primary_expression, + STATE(1682), 1, + sym_expression, + STATE(1892), 1, + sym_selector_expression, + STATE(2379), 1, + sym_dotted_name, + STATE(3125), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1946), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(796), 5, + sym_integer, + sym_true, + sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72017,7 +76786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -72025,7 +76794,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -72033,70 +76801,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62396] = 25, - ACTIONS(764), 1, + [70061] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(1033), 1, - anon_sym_not, - STATE(1716), 1, + STATE(1644), 1, sym_primary_expression, - STATE(1798), 1, - sym_expression, - STATE(1911), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2354), 1, + sym_expression, + STATE(2369), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72104,7 +76872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -72112,7 +76880,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -72120,70 +76887,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62508] = 25, - ACTIONS(507), 1, + [70172] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1432), 1, + STATE(1644), 1, sym_primary_expression, - STATE(1447), 1, + STATE(1683), 1, sym_expression, - STATE(1535), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72191,7 +76958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -72199,7 +76966,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -72207,28 +76973,77 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62620] = 8, - ACTIONS(1644), 1, - anon_sym_not, - ACTIONS(1650), 1, - anon_sym_is, - STATE(733), 1, - aux_sym_comparison_operator_repeat1, + [70283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1647), 4, + ACTIONS(1671), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1569), 22, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1669), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [70350] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1789), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -72247,9 +77062,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1567), 27, + ACTIONS(1791), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -72257,6 +77076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -72268,24 +77088,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [62698] = 4, - ACTIONS(1406), 1, - anon_sym_EQ, + [70417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 26, + ACTIONS(1785), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -72310,7 +77132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1340), 32, + ACTIONS(1787), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -72343,70 +77165,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [62768] = 25, - ACTIONS(900), 1, + [70484] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(1627), 1, + anon_sym_QMARK_DOT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1653), 1, - sym_identifier, - STATE(354), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2542), 1, + STATE(2318), 1, sym_expression, - STATE(3041), 1, + STATE(2366), 1, + sym_dotted_name, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72414,7 +77236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -72422,7 +77244,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -72430,70 +77251,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62880] = 25, - ACTIONS(764), 1, + [70595] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1635), 1, - sym_identifier, - STATE(1784), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2549), 1, + STATE(2425), 1, sym_expression, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72501,7 +77322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -72509,7 +77330,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -72517,70 +77337,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62992] = 25, - ACTIONS(764), 1, + [70706] = 25, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1331), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_not, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1635), 1, - sym_identifier, - ACTIONS(1655), 1, - anon_sym_not, - STATE(1784), 1, + STATE(1470), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1544), 1, + sym_expression, + STATE(2166), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2466), 1, sym_dotted_name, - STATE(2549), 1, - sym_expression, - STATE(3102), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1850), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72588,7 +77408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -72596,7 +77416,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -72604,70 +77423,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63104] = 25, - ACTIONS(900), 1, + [70817] = 25, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1331), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(1591), 1, + anon_sym_QMARK_DOT, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(1653), 1, - sym_identifier, - STATE(328), 1, + STATE(1470), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2166), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2554), 1, + STATE(2266), 1, sym_expression, - STATE(3041), 1, + STATE(2466), 1, + sym_dotted_name, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1850), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1146), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1846), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1845), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [70928] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1138), 1, + anon_sym_not, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1585), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, + anon_sym_QMARK_DOT, + ACTIONS(1595), 1, + anon_sym_DQUOTE, + ACTIONS(1597), 1, + sym_float, + STATE(1453), 1, + sym_primary_expression, + STATE(1546), 1, + sym_expression, + STATE(1645), 1, + sym_selector_expression, + STATE(2424), 1, + sym_dotted_name, + STATE(3074), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1848), 2, sym_in_operation, sym_not_in_operation, - sym_concatenation, + ACTIONS(1593), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72675,7 +77580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -72683,7 +77588,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -72691,13 +77595,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63216] = 3, + [71039] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1367), 26, + ACTIONS(1781), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -72722,14 +77626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1362), 33, + ACTIONS(1783), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -72756,59 +77659,317 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [63284] = 25, + [71106] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(997), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1199), 1, + STATE(1195), 1, + sym_primary_expression, + STATE(2116), 1, + sym_selector_expression, + STATE(2320), 1, sym_expression, - STATE(1229), 1, + STATE(2366), 1, + sym_dotted_name, + STATE(3107), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1364), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(429), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1308), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1321), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [71217] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(549), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, + anon_sym_DQUOTE, + ACTIONS(563), 1, + sym_float, + ACTIONS(970), 1, + sym_identifier, + ACTIONS(972), 1, + anon_sym_not, + STATE(1944), 1, sym_primary_expression, - STATE(1312), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2506), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1253), 3, + sym_binary_operator, sym_subscript, sym_call, - ACTIONS(1535), 3, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1229), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(465), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1239), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1238), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [71328] = 25, + ACTIONS(1265), 1, + anon_sym_DOT, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1637), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_LBRACK, + ACTIONS(1641), 1, + anon_sym_LBRACE, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(1647), 1, + anon_sym_DQUOTE, + ACTIONS(1649), 1, + sym_float, + STATE(999), 1, + sym_primary_expression, + STATE(1022), 1, + sym_expression, + STATE(1194), 1, + sym_selector_expression, + STATE(2421), 1, + sym_dotted_name, + STATE(2981), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1114), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1283), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1120), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1121), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [71439] = 25, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_LBRACE, + ACTIONS(1627), 1, + anon_sym_QMARK_DOT, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + sym_float, + STATE(1195), 1, + sym_primary_expression, + STATE(2116), 1, + sym_selector_expression, + STATE(2261), 1, + sym_dotted_name, + STATE(2422), 1, + sym_expression, + STATE(3107), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1346), 2, sym_in_operation, sym_not_in_operation, - sym_concatenation, + ACTIONS(1629), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -72819,7 +77980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72827,7 +77988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -72835,7 +77996,92 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, + sym_unary_operator, + sym_select_suffix, + sym_attribute, + sym_optional_attribute, + sym_optional_item, + sym_null_coalesce, + sym_string, + [71550] = 25, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(978), 1, + sym_identifier, + ACTIONS(986), 1, + anon_sym_not, + STATE(1526), 1, + sym_primary_expression, + STATE(1579), 1, + sym_expression, + STATE(1725), 1, + sym_selector_expression, + STATE(2453), 1, + sym_dotted_name, + STATE(3095), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1896), 3, sym_binary_operator, + sym_subscript, + sym_call, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1873), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1906), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1909), 14, + sym_schema_expr, + sym_lambda_expr, + sym_quant_expr, + sym_paren_expression, + sym_braces_expression, + sym_string_literal_expr, + sym_config_expr, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -72843,13 +78089,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63396] = 3, + [71661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 26, + ACTIONS(1775), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -72874,14 +78120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1605), 33, + ACTIONS(1777), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -72908,13 +78153,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [63464] = 3, + [71728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 26, + ACTIONS(1771), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -72939,14 +78184,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1609), 33, + ACTIONS(1773), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -72973,70 +78217,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [63532] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, + [71795] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(920), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(311), 1, + ACTIONS(1028), 1, + sym_identifier, + ACTIONS(1030), 1, + anon_sym_not, + STATE(1911), 1, + sym_expression, + STATE(1930), 1, sym_primary_expression, - STATE(1144), 1, + STATE(1994), 1, sym_selector_expression, - STATE(1166), 1, - sym_expression, - STATE(2448), 1, + STATE(2440), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73044,7 +78288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73052,7 +78296,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73060,70 +78303,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63644] = 25, - ACTIONS(764), 1, + [71906] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - STATE(1642), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2370), 1, + STATE(2375), 1, sym_expression, - STATE(2499), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73131,7 +78374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73139,7 +78382,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73147,70 +78389,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63756] = 25, - ACTIONS(764), 1, + [72017] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - STATE(1642), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2374), 1, + STATE(2286), 1, sym_expression, - STATE(2499), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73218,7 +78460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73226,7 +78468,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73234,70 +78475,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63868] = 25, - ACTIONS(764), 1, + [72128] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(1025), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(1033), 1, - anon_sym_not, - STATE(1663), 1, - sym_expression, - STATE(1716), 1, + STATE(1644), 1, sym_primary_expression, - STATE(1911), 1, + STATE(1686), 1, + sym_expression, + STATE(2179), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73305,7 +78546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73313,7 +78554,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73321,70 +78561,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63980] = 25, - ACTIONS(900), 1, + [72239] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(1028), 1, sym_identifier, - STATE(330), 1, + ACTIONS(1030), 1, + anon_sym_not, + STATE(1925), 1, + sym_expression, + STATE(1930), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1994), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2440), 1, sym_dotted_name, - STATE(2554), 1, - sym_expression, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73392,7 +78632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73400,7 +78640,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73408,70 +78647,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64092] = 25, - ACTIONS(900), 1, + [72350] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(1028), 1, sym_identifier, - STATE(331), 1, + ACTIONS(1030), 1, + anon_sym_not, + STATE(1930), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1982), 1, + sym_expression, + STATE(1994), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2440), 1, sym_dotted_name, - STATE(2554), 1, - sym_expression, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73479,7 +78718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73487,7 +78726,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73495,70 +78733,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64204] = 25, - ACTIONS(764), 1, + [72461] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1635), 1, + ACTIONS(1028), 1, sym_identifier, - STATE(1770), 1, + ACTIONS(1030), 1, + anon_sym_not, + STATE(1930), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1977), 1, + sym_expression, + STATE(1994), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2440), 1, sym_dotted_name, - STATE(2549), 1, - sym_expression, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73566,7 +78804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73574,7 +78812,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73582,70 +78819,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64316] = 25, - ACTIONS(764), 1, + [72572] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1635), 1, + ACTIONS(1028), 1, sym_identifier, - STATE(1714), 1, + ACTIONS(1030), 1, + anon_sym_not, + STATE(1144), 1, + sym_expression, + STATE(1930), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1994), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2440), 1, sym_dotted_name, - STATE(2549), 1, - sym_expression, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73653,7 +78890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73661,7 +78898,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73669,70 +78905,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64428] = 25, - ACTIONS(764), 1, + [72683] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(772), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1635), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(978), 1, sym_identifier, - STATE(1751), 1, + ACTIONS(986), 1, + anon_sym_not, + STATE(1526), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1580), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2453), 1, sym_dotted_name, - STATE(2549), 1, - sym_expression, - STATE(3102), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73740,7 +78976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73748,7 +78984,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73756,70 +78991,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64540] = 25, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [72794] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1767), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1769), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(776), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [72861] = 25, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1635), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(978), 1, sym_identifier, - STATE(1766), 1, + ACTIONS(986), 1, + anon_sym_not, + STATE(1526), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1565), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2453), 1, sym_dotted_name, - STATE(2549), 1, - sym_expression, - STATE(3102), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73827,7 +79126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73835,7 +79134,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73843,70 +79141,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64652] = 25, - ACTIONS(764), 1, + [72972] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1635), 1, + ACTIONS(1028), 1, sym_identifier, - STATE(1789), 1, + ACTIONS(1030), 1, + anon_sym_not, + STATE(1142), 1, + sym_expression, + STATE(1930), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1994), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2440), 1, sym_dotted_name, - STATE(2549), 1, - sym_expression, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73914,7 +79212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -73922,7 +79220,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -73930,70 +79227,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64764] = 25, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + [73083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1767), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(788), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1769), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1635), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [73150] = 25, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1331), 1, sym_identifier, - STATE(1780), 1, + ACTIONS(1333), 1, + anon_sym_not, + ACTIONS(1585), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(1591), 1, + anon_sym_QMARK_DOT, + ACTIONS(1595), 1, + anon_sym_DQUOTE, + ACTIONS(1597), 1, + sym_float, + STATE(1470), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2166), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2549), 1, + STATE(2307), 1, sym_expression, - STATE(3102), 1, + STATE(2466), 1, + sym_dotted_name, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1850), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74001,7 +79362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74009,7 +79370,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74017,70 +79377,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64876] = 25, - ACTIONS(764), 1, + [73261] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1635), 1, + ACTIONS(1028), 1, sym_identifier, - STATE(1792), 1, + ACTIONS(1030), 1, + anon_sym_not, + STATE(1915), 1, + sym_expression, + STATE(1930), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1994), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2440), 1, sym_dotted_name, - STATE(2549), 1, - sym_expression, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74088,7 +79448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74096,7 +79456,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74104,70 +79463,134 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64988] = 25, - ACTIONS(900), 1, + [73372] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1763), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1765), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(906), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(920), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [73439] = 25, + ACTIONS(1128), 1, + anon_sym_DOT, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1331), 1, + sym_identifier, + ACTIONS(1333), 1, anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(1591), 1, + anon_sym_QMARK_DOT, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(1653), 1, - sym_identifier, - STATE(332), 1, + STATE(1470), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2166), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2554), 1, + STATE(2258), 1, sym_expression, - STATE(3041), 1, + STATE(2466), 1, + sym_dotted_name, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(1850), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74175,7 +79598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74183,7 +79606,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74191,70 +79613,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65100] = 25, - ACTIONS(900), 1, + [73550] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1693), 1, sym_identifier, - STATE(333), 1, + STATE(1553), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2554), 1, + STATE(2489), 1, sym_expression, - STATE(3041), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74262,7 +79684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74270,7 +79692,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74278,70 +79699,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65212] = 25, - ACTIONS(764), 1, + [73661] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - STATE(1642), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2386), 1, + STATE(2349), 1, sym_expression, - STATE(2499), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74349,7 +79770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74357,7 +79778,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74365,70 +79785,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65324] = 25, - ACTIONS(900), 1, + [73772] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1693), 1, sym_identifier, - STATE(335), 1, + STATE(1551), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2554), 1, + STATE(2494), 1, sym_expression, - STATE(3041), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74436,7 +79856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74444,7 +79864,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74452,70 +79871,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65436] = 25, - ACTIONS(900), 1, + [73883] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(978), 1, sym_identifier, - STATE(336), 1, + ACTIONS(986), 1, + anon_sym_not, + STATE(1490), 1, + sym_expression, + STATE(1526), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1725), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2453), 1, sym_dotted_name, - STATE(2554), 1, - sym_expression, - STATE(3041), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74523,7 +79942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74531,7 +79950,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74539,70 +79957,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65548] = 25, - ACTIONS(900), 1, + [73994] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1653), 1, - sym_identifier, - STATE(338), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2554), 1, + STATE(2405), 1, sym_expression, - STATE(3041), 1, + STATE(2467), 1, + sym_dotted_name, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74610,7 +80028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74618,7 +80036,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74626,70 +80043,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65660] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, + [74105] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(983), 1, - anon_sym_not, - ACTIONS(993), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1505), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(563), 1, sym_float, - STATE(1553), 1, + ACTIONS(1028), 1, + sym_identifier, + ACTIONS(1030), 1, + anon_sym_not, + STATE(1927), 1, sym_expression, - STATE(1556), 1, + STATE(1930), 1, sym_primary_expression, - STATE(1811), 1, + STATE(1994), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2440), 1, sym_dotted_name, - STATE(3070), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1651), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1999), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74697,7 +80114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74705,7 +80122,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74713,70 +80129,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65772] = 25, - ACTIONS(900), 1, + [74216] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(798), 1, sym_float, - STATE(378), 1, - sym_expression, - STATE(395), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + STATE(1644), 1, sym_primary_expression, - STATE(544), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2373), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74784,7 +80200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74792,7 +80208,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74800,70 +80215,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65884] = 25, - ACTIONS(898), 1, + [74327] = 25, + ACTIONS(9), 1, sym_identifier, - ACTIONS(900), 1, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(53), 1, sym_float, - STATE(311), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(1144), 1, + STATE(2162), 1, sym_selector_expression, - STATE(1165), 1, + STATE(2281), 1, sym_expression, - STATE(2448), 1, + STATE(2467), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74871,7 +80286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74879,7 +80294,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74887,70 +80301,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65996] = 25, - ACTIONS(453), 1, + [74438] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1199), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(1169), 1, - sym_expression, - STATE(1999), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2468), 1, + sym_expression, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74958,7 +80372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -74966,7 +80380,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -74974,70 +80387,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66108] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, + [74549] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(910), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(920), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(557), 1, + anon_sym_QMARK_DOT, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(563), 1, sym_float, - STATE(311), 1, + STATE(1360), 1, sym_primary_expression, - STATE(1144), 1, + STATE(2154), 1, sym_selector_expression, - STATE(1164), 1, + STATE(2367), 1, sym_expression, - STATE(2448), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75045,7 +80458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -75053,7 +80466,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -75061,70 +80473,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66220] = 25, - ACTIONS(900), 1, + [74660] = 25, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1213), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, ACTIONS(1453), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(1455), 1, + anon_sym_not, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1549), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1555), 1, sym_float, - ACTIONS(1653), 1, - sym_identifier, - ACTIONS(1657), 1, - anon_sym_not, - STATE(346), 1, + STATE(340), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1074), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2554), 1, + STATE(1137), 1, sym_expression, - STATE(3041), 1, + STATE(2435), 1, + sym_dotted_name, + STATE(3014), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(756), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1551), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(757), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(755), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(1225), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(760), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75132,7 +80544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(767), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -75140,7 +80552,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -75148,70 +80559,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66332] = 25, - ACTIONS(900), 1, + [74771] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(1627), 1, + anon_sym_QMARK_DOT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1653), 1, - sym_identifier, - STATE(346), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2299), 1, sym_dotted_name, - STATE(2554), 1, + STATE(2419), 1, sym_expression, - STATE(3041), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(927), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75219,7 +80630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -75227,7 +80638,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -75235,70 +80645,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66444] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [74882] = 25, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1285), 1, + sym_string_start, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1637), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_LBRACK, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + STATE(999), 1, sym_primary_expression, - STATE(2230), 1, + STATE(1194), 1, sym_selector_expression, - STATE(2487), 1, - sym_dotted_name, - STATE(2517), 1, + STATE(1936), 1, sym_expression, - STATE(3046), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75306,7 +80716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -75314,7 +80724,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -75322,135 +80731,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66556] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1617), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1615), 33, - anon_sym_import, + [74993] = 25, + ACTIONS(401), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(411), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(419), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [66624] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(1178), 1, - sym_expression, - STATE(1999), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2285), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2376), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75458,7 +80802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -75466,7 +80810,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -75474,13 +80817,17 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66736] = 25, - ACTIONS(453), 1, + [75104] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, + ACTIONS(545), 1, + sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -75493,51 +80840,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(1999), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2540), 1, + STATE(2404), 1, sym_expression, - STATE(3115), 1, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75545,7 +80888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -75553,7 +80896,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -75561,13 +80903,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66848] = 3, + [75215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 26, + ACTIONS(1755), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -75592,14 +80934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1619), 33, + ACTIONS(1757), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -75626,70 +80967,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [66916] = 25, - ACTIONS(453), 1, + [75282] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1127), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_not, - STATE(1987), 1, - sym_expression, - STATE(2040), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2046), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2275), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2382), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75697,7 +81038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -75705,7 +81046,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -75713,222 +81053,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67028] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1625), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1623), 33, - anon_sym_import, + [75393] = 25, + ACTIONS(401), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(411), 1, anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + ACTIONS(419), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [67096] = 25, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1635), 1, - sym_identifier, - STATE(1810), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2549), 1, + STATE(2328), 1, sym_expression, - STATE(3102), 1, + STATE(2366), 1, + sym_dotted_name, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(2042), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(786), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1972), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, + STATE(1323), 3, sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [67208] = 25, - ACTIONS(764), 1, - anon_sym_DOT, - ACTIONS(768), 1, - anon_sym_LPAREN, - ACTIONS(772), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(784), 1, - anon_sym_DQUOTE, - ACTIONS(788), 1, - sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1635), 1, - sym_identifier, - STATE(1813), 1, - sym_primary_expression, - STATE(2240), 1, - sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2542), 1, - sym_expression, - STATE(3102), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2041), 2, sym_subscript, sym_call, - ACTIONS(782), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2042), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75936,7 +81124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -75944,7 +81132,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -75952,13 +81139,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67320] = 3, + [75504] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 26, + ACTIONS(1751), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -75983,14 +81170,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1627), 33, + ACTIONS(1753), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, anon_sym_else, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -76017,135 +81203,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [67388] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1633), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [75571] = 25, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(49), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(53), 1, sym_float, - ACTIONS(1631), 33, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [67456] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(180), 1, anon_sym_LBRACK, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - sym_float, - STATE(1393), 1, + ACTIONS(978), 1, + sym_identifier, + ACTIONS(986), 1, + anon_sym_not, + STATE(1526), 1, sym_primary_expression, - STATE(2210), 1, + STATE(1585), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2453), 1, sym_dotted_name, - STATE(2515), 1, - sym_expression, - STATE(3115), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76153,7 +81274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -76161,7 +81282,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -76169,70 +81289,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67568] = 25, - ACTIONS(900), 1, + [75682] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(922), 1, - sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(53), 1, sym_float, - STATE(386), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(978), 1, + sym_identifier, + ACTIONS(986), 1, + anon_sym_not, + STATE(1514), 1, sym_expression, - STATE(395), 1, + STATE(1526), 1, sym_primary_expression, - STATE(544), 1, + STATE(1725), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2453), 1, sym_dotted_name, - STATE(3041), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76240,7 +81360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -76248,7 +81368,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -76256,70 +81375,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67680] = 25, - ACTIONS(973), 1, + [75793] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1177), 1, - sym_identifier, - ACTIONS(1179), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, - anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1575), 1, sym_float, - STATE(1544), 1, + STATE(201), 1, sym_primary_expression, - STATE(1591), 1, - sym_expression, - STATE(2219), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2470), 1, + STATE(1141), 1, + sym_expression, + STATE(2443), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76327,7 +81446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -76335,7 +81454,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -76343,70 +81461,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67792] = 25, - ACTIONS(453), 1, + [75904] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1583), 1, + sym_identifier, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(1073), 1, - sym_identifier, - ACTIONS(1075), 1, - anon_sym_not, - STATE(1537), 1, + STATE(1558), 1, sym_primary_expression, - STATE(1552), 1, - sym_expression, - STATE(1709), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2489), 1, + sym_expression, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76414,7 +81532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -76422,7 +81540,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -76430,70 +81547,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67904] = 25, - ACTIONS(973), 1, + [76015] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1177), 1, - sym_identifier, - ACTIONS(1179), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, - anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(53), 1, sym_float, - STATE(1544), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(978), 1, + sym_identifier, + ACTIONS(986), 1, + anon_sym_not, + STATE(1526), 1, sym_primary_expression, - STATE(1623), 1, + STATE(1584), 1, sym_expression, - STATE(2219), 1, + STATE(1725), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2453), 1, sym_dotted_name, - STATE(3070), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76501,7 +81618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -76509,7 +81626,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -76517,70 +81633,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68016] = 25, - ACTIONS(973), 1, + [76126] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(993), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1177), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1179), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1633), 1, sym_float, - STATE(1544), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2219), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2470), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2389), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76588,7 +81704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -76596,7 +81712,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -76604,70 +81719,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68128] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, + [76237] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(983), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(993), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1505), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1633), 1, sym_float, - STATE(1556), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1625), 1, - sym_expression, - STATE(1811), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2331), 1, + sym_expression, + STATE(2366), 1, sym_dotted_name, - STATE(3070), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76675,7 +81790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -76683,7 +81798,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -76691,70 +81805,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68240] = 25, - ACTIONS(453), 1, + [76348] = 25, + ACTIONS(1265), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1271), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1319), 1, + anon_sym_not, + ACTIONS(1637), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1643), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1647), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1649), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(1999), 1, + STATE(999), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1194), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2568), 1, + STATE(1931), 1, sym_expression, - STATE(3115), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(2981), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1645), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1117), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1114), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1283), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1120), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76762,7 +81876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1121), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -76770,7 +81884,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -76778,70 +81891,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68352] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [76459] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_not, - ACTIONS(1111), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1543), 1, + ACTIONS(1583), 1, + sym_identifier, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1597), 1, sym_float, - STATE(1062), 1, + STATE(1559), 1, sym_primary_expression, - STATE(1067), 1, - sym_expression, - STATE(1075), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2481), 1, + sym_expression, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76849,7 +81962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -76857,7 +81970,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -76865,70 +81977,198 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68464] = 25, - ACTIONS(973), 1, + [76570] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1751), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1753), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(979), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1177), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1179), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [76637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1747), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1749), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1505), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [76704] = 25, + ACTIONS(441), 1, + anon_sym_DOT, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(563), 1, sym_float, - STATE(1544), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1703), 1, + sym_identifier, + STATE(1358), 1, sym_primary_expression, - STATE(2219), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2314), 1, - sym_expression, - STATE(2470), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2503), 1, + sym_expression, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1229), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76936,7 +82176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -76944,7 +82184,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -76952,70 +82191,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68576] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(876), 1, + [76815] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(886), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(896), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1481), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(563), 1, sym_float, - STATE(390), 1, - sym_expression, - STATE(394), 1, + STATE(1360), 1, sym_primary_expression, - STATE(614), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2220), 1, + sym_expression, + STATE(2457), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77023,7 +82262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -77031,7 +82270,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -77039,70 +82277,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68688] = 25, - ACTIONS(973), 1, + [76926] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, - anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1659), 1, - sym_identifier, - STATE(1609), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2542), 1, + STATE(2278), 1, sym_expression, - STATE(3070), 1, + STATE(2467), 1, + sym_dotted_name, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77110,7 +82348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -77118,7 +82356,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -77126,70 +82363,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68800] = 25, - ACTIONS(973), 1, + [77037] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1659), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1661), 1, sym_identifier, - STATE(1608), 1, + STATE(1444), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2558), 1, + STATE(2477), 1, sym_expression, - STATE(3070), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77197,7 +82434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -77205,7 +82442,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -77213,7 +82449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68912] = 25, + [77148] = 25, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -77226,46 +82462,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, ACTIONS(531), 1, anon_sym_DQUOTE, ACTIONS(537), 1, sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(1661), 1, sym_identifier, - STATE(1462), 1, + ACTIONS(1851), 1, + anon_sym_not, + STATE(1444), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2292), 1, - sym_expression, - STATE(2496), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2477), 1, + sym_expression, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -77276,7 +82512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77284,7 +82520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -77292,7 +82528,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -77300,70 +82535,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69024] = 25, - ACTIONS(973), 1, + [77259] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(993), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1177), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1179), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1633), 1, sym_float, - STATE(1544), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2219), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2315), 1, - sym_expression, - STATE(2470), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2390), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77371,7 +82606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -77379,7 +82614,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -77387,157 +82621,200 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69136] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [77370] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1743), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(537), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1745), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(1519), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(1486), 1, - sym_primary_expression, - STATE(2240), 1, - sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2551), 1, - sym_expression, - STATE(3087), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [77437] = 5, + ACTIONS(1845), 1, + anon_sym_in, + ACTIONS(1853), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + ACTIONS(1683), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1681), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1673), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [69248] = 25, - ACTIONS(973), 1, + [77508] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, - anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1659), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(978), 1, sym_identifier, - STATE(1594), 1, + ACTIONS(986), 1, + anon_sym_not, + STATE(1526), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1561), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2453), 1, sym_dotted_name, - STATE(2558), 1, - sym_expression, - STATE(3070), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1873), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77545,7 +82822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -77553,7 +82830,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -77561,70 +82837,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69360] = 25, - ACTIONS(764), 1, + [77619] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1155), 1, + ACTIONS(684), 1, sym_identifier, - STATE(1642), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2408), 1, + STATE(2243), 1, sym_expression, - STATE(2499), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77632,7 +82908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -77640,7 +82916,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -77648,70 +82923,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69472] = 25, - ACTIONS(973), 1, + [77730] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1659), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - STATE(1593), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2558), 1, + STATE(2251), 1, sym_expression, - STATE(3070), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77719,7 +82994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -77727,7 +83002,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -77735,70 +83009,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69584] = 25, - ACTIONS(453), 1, + [77841] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1199), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1201), 1, + ACTIONS(1106), 1, anon_sym_not, - STATE(1999), 1, + STATE(1408), 1, + sym_expression, + STATE(1412), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1521), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2391), 1, sym_dotted_name, - STATE(2559), 1, - sym_expression, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77806,7 +83080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -77814,7 +83088,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -77822,157 +83095,198 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69696] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, + [77952] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1739), 26, + sym__dedent, sym_string_start, - ACTIONS(547), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(563), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1127), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1741), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - STATE(1992), 1, - sym_expression, - STATE(2040), 1, - sym_primary_expression, - STATE(2046), 1, - sym_selector_expression, - STATE(2452), 1, - sym_dotted_name, - STATE(3115), 1, - sym_quant_op, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [78019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + ACTIONS(1735), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1737), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(471), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [69808] = 25, - ACTIONS(453), 1, + [78086] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(972), 1, anon_sym_not, - STATE(1999), 1, + ACTIONS(1661), 1, + sym_identifier, + STATE(1395), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2547), 1, + STATE(2477), 1, sym_expression, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77980,7 +83294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -77988,7 +83302,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -77996,70 +83309,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69920] = 25, - ACTIONS(453), 1, + [78197] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(972), 1, anon_sym_not, - STATE(1999), 1, + ACTIONS(1661), 1, + sym_identifier, + STATE(1394), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2557), 1, + STATE(2477), 1, sym_expression, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78067,7 +83380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -78075,7 +83388,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -78083,70 +83395,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70032] = 25, - ACTIONS(973), 1, + [78308] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1659), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1661), 1, sym_identifier, - STATE(1592), 1, + STATE(1393), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2558), 1, + STATE(2477), 1, sym_expression, - STATE(3070), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78154,7 +83466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -78162,7 +83474,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -78170,70 +83481,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70144] = 25, - ACTIONS(973), 1, + [78419] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1659), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1661), 1, sym_identifier, - STATE(1590), 1, + STATE(1419), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2558), 1, + STATE(2477), 1, sym_expression, - STATE(3070), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78241,7 +83552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -78249,7 +83560,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -78257,70 +83567,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70256] = 25, - ACTIONS(973), 1, + [78530] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1659), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1661), 1, sym_identifier, - STATE(1589), 1, + STATE(1391), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2558), 1, + STATE(2477), 1, sym_expression, - STATE(3070), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78328,7 +83638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -78336,7 +83646,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -78344,70 +83653,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70368] = 25, - ACTIONS(973), 1, + [78641] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1659), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1661), 1, sym_identifier, - STATE(1587), 1, + STATE(1390), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2558), 1, + STATE(2477), 1, sym_expression, - STATE(3070), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78415,7 +83724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -78423,7 +83732,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -78431,70 +83739,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70480] = 25, - ACTIONS(973), 1, + [78752] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1659), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1661), 1, sym_identifier, - STATE(1586), 1, + STATE(1417), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2558), 1, + STATE(2477), 1, sym_expression, - STATE(3070), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78502,7 +83810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -78510,7 +83818,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -78518,418 +83825,520 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [70592] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [78863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1731), 26, + sym__dedent, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1529), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, - anon_sym_DQUOTE, - ACTIONS(1539), 1, - sym_float, - STATE(1183), 1, - sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2521), 1, - sym_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(3077), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1733), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1350), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70704] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [78930] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1727), 26, + sym__dedent, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1529), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, - anon_sym_DQUOTE, - ACTIONS(1539), 1, - sym_float, - STATE(1183), 1, - sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2377), 1, - sym_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(3077), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1729), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1350), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70816] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [78997] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1723), 26, + sym__dedent, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1529), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, - anon_sym_DQUOTE, - ACTIONS(1539), 1, - sym_float, - STATE(1183), 1, - sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2530), 1, - sym_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(3077), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1725), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1350), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70928] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, + [79064] = 5, + ACTIONS(1685), 1, + anon_sym_in, + ACTIONS(1855), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1683), 26, + sym__dedent, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1529), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1539), 1, - sym_float, - STATE(1183), 1, - sym_primary_expression, - STATE(2153), 1, - sym_selector_expression, - STATE(2391), 1, - sym_expression, - STATE(2532), 1, - sym_dotted_name, - STATE(3077), 1, - sym_quant_op, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1681), 30, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [79135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + ACTIONS(1719), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1721), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 5, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1350), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [71040] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, + [79202] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1715), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1717), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(979), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(983), 1, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(993), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [79269] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1711), 26, + sym__dedent, sym_string_start, - ACTIONS(1505), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1507), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1517), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1713), 32, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [79336] = 25, + ACTIONS(774), 1, + anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_QMARK_DOT, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, + anon_sym_DQUOTE, + ACTIONS(798), 1, sym_float, - STATE(1556), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + STATE(1644), 1, sym_primary_expression, - STATE(1601), 1, - sym_expression, - STATE(1811), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2442), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78937,7 +84346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -78945,7 +84354,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -78953,70 +84361,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71152] = 25, - ACTIONS(973), 1, + [79447] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(993), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1177), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1179), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1597), 1, sym_float, - STATE(1544), 1, + STATE(1568), 1, sym_primary_expression, - STATE(2219), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2316), 1, - sym_expression, - STATE(2470), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2481), 1, + sym_expression, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79024,7 +84432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79032,7 +84440,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79040,70 +84447,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71264] = 25, - ACTIONS(764), 1, + [79558] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1583), 1, + sym_identifier, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1025), 1, - sym_identifier, - ACTIONS(1033), 1, - anon_sym_not, - STATE(1678), 1, - sym_expression, - STATE(1716), 1, + STATE(1569), 1, sym_primary_expression, - STATE(1911), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3102), 1, + STATE(2481), 1, + sym_expression, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79111,7 +84518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79119,7 +84526,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79127,70 +84533,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71376] = 25, - ACTIONS(764), 1, + [79669] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1155), 1, + ACTIONS(684), 1, sym_identifier, - STATE(1642), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2415), 1, - sym_expression, - STATE(2499), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3102), 1, + STATE(2456), 1, + sym_expression, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79198,7 +84604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79206,7 +84612,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79214,70 +84619,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71488] = 25, - ACTIONS(764), 1, + [79780] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1583), 1, + sym_identifier, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, - sym_identifier, - STATE(1642), 1, + STATE(1571), 1, sym_primary_expression, - STATE(1671), 1, - sym_expression, - STATE(2233), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3102), 1, + STATE(2481), 1, + sym_expression, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79285,7 +84690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79293,7 +84698,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79301,70 +84705,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71600] = 25, - ACTIONS(973), 1, + [79891] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(993), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1177), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1179), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1633), 1, sym_float, - STATE(1544), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2219), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2318), 1, + STATE(2296), 1, sym_expression, - STATE(2470), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3070), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79372,7 +84776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79380,7 +84784,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79388,70 +84791,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71712] = 25, - ACTIONS(973), 1, + [80002] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(993), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1505), 1, + ACTIONS(1583), 1, + sym_identifier, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(1659), 1, - sym_identifier, - ACTIONS(1661), 1, - anon_sym_not, - STATE(1573), 1, + STATE(1572), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2558), 1, + STATE(2481), 1, sym_expression, - STATE(3070), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79459,7 +84862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79467,7 +84870,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79475,70 +84877,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71824] = 25, - ACTIONS(401), 1, + [80113] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(455), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(1525), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(563), 1, sym_float, - STATE(1183), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2334), 1, + STATE(2457), 1, sym_dotted_name, - STATE(2518), 1, + STATE(2458), 1, sym_expression, - STATE(3077), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79546,7 +84948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79554,7 +84956,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79562,70 +84963,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [71936] = 25, - ACTIONS(973), 1, + [80224] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(993), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(1583), 1, + sym_identifier, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(1659), 1, - sym_identifier, - STATE(1573), 1, + STATE(1575), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2558), 1, + STATE(2481), 1, sym_expression, - STATE(3070), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79633,7 +85034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79641,7 +85042,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79649,70 +85049,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72048] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [80335] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(511), 1, + anon_sym_LBRACK, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1661), 1, + sym_identifier, + STATE(1446), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2322), 1, - sym_expression, - STATE(2487), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2477), 1, + sym_expression, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79720,7 +85120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79728,7 +85128,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79736,7 +85135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72160] = 25, + [80446] = 25, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -79749,46 +85148,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, ACTIONS(531), 1, anon_sym_DQUOTE, ACTIONS(537), 1, sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1661), 1, sym_identifier, - STATE(1462), 1, + STATE(1451), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2412), 1, - sym_expression, - STATE(2496), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2489), 1, + sym_expression, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1685), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -79799,7 +85198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79807,7 +85206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79815,7 +85214,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79823,70 +85221,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72272] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [80557] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1583), 1, + sym_identifier, + ACTIONS(1585), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + STATE(1576), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2321), 1, - sym_expression, - STATE(2487), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2481), 1, + sym_expression, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79894,7 +85292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79902,7 +85300,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79910,70 +85307,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72384] = 25, - ACTIONS(401), 1, + [80668] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1525), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1597), 1, sym_float, - STATE(1183), 1, + STATE(1577), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2325), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2537), 1, + STATE(2481), 1, sym_expression, - STATE(3077), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -79981,7 +85378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -79989,7 +85386,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -79997,70 +85393,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72496] = 25, - ACTIONS(13), 1, + [80779] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1138), 1, + anon_sym_not, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1585), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1541), 1, - sym_identifier, - STATE(1545), 1, + STATE(1453), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1462), 1, + sym_expression, + STATE(1645), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2424), 1, sym_dotted_name, - STATE(2567), 1, - sym_expression, - STATE(3046), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(1829), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80068,7 +85464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80076,7 +85472,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80084,70 +85479,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72608] = 25, - ACTIONS(507), 1, + [80890] = 25, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1134), 1, + anon_sym_lambda, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1331), 1, + sym_identifier, + ACTIONS(1333), 1, + anon_sym_not, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + STATE(1470), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2166), 1, sym_selector_expression, - STATE(2446), 1, + STATE(2300), 1, sym_expression, - STATE(2496), 1, + STATE(2466), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1850), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80155,7 +85550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80163,7 +85558,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80171,70 +85565,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72720] = 25, - ACTIONS(401), 1, + [81001] = 25, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1331), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1333), 1, + anon_sym_not, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1597), 1, sym_float, - STATE(1183), 1, + STATE(1470), 1, sym_primary_expression, - STATE(1208), 1, - sym_expression, - STATE(2153), 1, + STATE(2166), 1, sym_selector_expression, - STATE(2532), 1, + STATE(2298), 1, + sym_expression, + STATE(2466), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1848), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1850), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1846), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80242,7 +85636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80250,7 +85644,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80258,70 +85651,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72832] = 25, - ACTIONS(13), 1, + [81112] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1565), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_LBRACE, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1541), 1, + ACTIONS(1659), 1, sym_identifier, - STATE(1550), 1, + STATE(190), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2567), 1, + STATE(2491), 1, sym_expression, - STATE(3046), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80329,7 +85722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80337,7 +85730,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80345,70 +85737,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [72944] = 25, - ACTIONS(13), 1, + [81223] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1565), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_LBRACE, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, + ACTIONS(1659), 1, sym_identifier, - STATE(1604), 1, + ACTIONS(1857), 1, + anon_sym_not, + STATE(190), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2402), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2535), 1, + STATE(2491), 1, sym_expression, - STATE(3046), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80416,7 +85808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80424,7 +85816,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80432,70 +85823,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73056] = 25, - ACTIONS(453), 1, + [81334] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(1127), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_not, - STATE(1971), 1, - sym_expression, - STATE(2040), 1, + STATE(201), 1, sym_primary_expression, - STATE(2046), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2452), 1, + STATE(1132), 1, + sym_expression, + STATE(2443), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80503,7 +85894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80511,7 +85902,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80519,70 +85909,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73168] = 25, - ACTIONS(13), 1, + [81445] = 25, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1583), 1, + sym_identifier, + ACTIONS(1585), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, + anon_sym_LBRACK, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1597), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1201), 1, + ACTIONS(1859), 1, anon_sym_not, - ACTIONS(1541), 1, - sym_identifier, - STATE(1541), 1, + STATE(1501), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2567), 1, + STATE(2481), 1, sym_expression, - STATE(3046), 1, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80590,7 +85980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80598,7 +85988,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80606,70 +85995,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73280] = 25, - ACTIONS(401), 1, + [81556] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1128), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1134), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1583), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1585), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1591), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1597), 1, sym_float, - STATE(1183), 1, + STATE(1501), 1, sym_primary_expression, - STATE(1205), 1, - sym_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2481), 1, + sym_expression, + STATE(3074), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1593), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1847), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1146), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80677,7 +86066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1845), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80685,7 +86074,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80693,70 +86081,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73392] = 25, - ACTIONS(401), 1, + [81667] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - STATE(1183), 1, + STATE(201), 1, sym_primary_expression, - STATE(2153), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2253), 1, + STATE(1135), 1, sym_expression, - STATE(2532), 1, + STATE(2443), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80764,7 +86152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80772,7 +86160,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80780,70 +86167,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73504] = 25, - ACTIONS(401), 1, + [81778] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(997), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(1295), 1, anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - STATE(1202), 1, + STATE(192), 1, sym_expression, - STATE(1229), 1, + STATE(288), 1, sym_primary_expression, - STATE(1312), 1, + STATE(416), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2445), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1329), 3, + STATE(517), 2, sym_in_operation, sym_not_in_operation, - sym_concatenation, + ACTIONS(1571), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80851,7 +86238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80859,7 +86246,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80867,70 +86253,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73616] = 25, - ACTIONS(401), 1, + [81889] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - STATE(1183), 1, + ACTIONS(1659), 1, + sym_identifier, + STATE(304), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2241), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2491), 1, + sym_expression, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -80938,7 +86324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -80946,7 +86332,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -80954,70 +86339,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73728] = 25, - ACTIONS(764), 1, + [82000] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(1050), 1, + anon_sym_lambda, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1155), 1, + ACTIONS(1659), 1, sym_identifier, - STATE(1642), 1, + STATE(199), 1, sym_primary_expression, - STATE(1718), 1, - sym_expression, - STATE(2233), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2499), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3102), 1, + STATE(2491), 1, + sym_expression, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81025,7 +86410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81033,7 +86418,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81041,70 +86425,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73840] = 25, - ACTIONS(401), 1, + [82111] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(1665), 1, + ACTIONS(1659), 1, sym_identifier, - STATE(1228), 1, + STATE(303), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2545), 1, + STATE(2491), 1, sym_expression, - STATE(3077), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81112,7 +86496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81120,7 +86504,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81128,70 +86511,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [73952] = 25, - ACTIONS(13), 1, + [82222] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1565), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_LBRACE, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1541), 1, + ACTIONS(1659), 1, sym_identifier, - STATE(1539), 1, + STATE(302), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2567), 1, + STATE(2491), 1, sym_expression, - STATE(3046), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81199,7 +86582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81207,7 +86590,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81215,70 +86597,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74064] = 25, - ACTIONS(401), 1, + [82333] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - STATE(1183), 1, + ACTIONS(1659), 1, + sym_identifier, + STATE(294), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2249), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2491), 1, + sym_expression, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81286,7 +86668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81294,7 +86676,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81302,70 +86683,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74176] = 25, - ACTIONS(13), 1, + [82444] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1565), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_LBRACE, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1541), 1, + ACTIONS(1659), 1, sym_identifier, - STATE(1536), 1, + STATE(284), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2567), 1, + STATE(2491), 1, sym_expression, - STATE(3046), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81373,7 +86754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81381,7 +86762,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81389,70 +86769,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74288] = 25, - ACTIONS(13), 1, + [82555] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1565), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_LBRACE, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1541), 1, + ACTIONS(1659), 1, sym_identifier, - STATE(1533), 1, + STATE(276), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2567), 1, + STATE(2491), 1, sym_expression, - STATE(3046), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81460,7 +86840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81468,7 +86848,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81476,70 +86855,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74400] = 25, - ACTIONS(13), 1, + [82666] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(511), 1, + anon_sym_LBRACK, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1541), 1, + ACTIONS(684), 1, sym_identifier, - STATE(1528), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2567), 1, + STATE(2245), 1, sym_expression, - STATE(3046), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81547,7 +86926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81555,7 +86934,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81563,70 +86941,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74512] = 25, - ACTIONS(453), 1, + [82777] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(463), 1, - anon_sym_not, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - STATE(1393), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1693), 1, + sym_identifier, + STATE(1543), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2430), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2450), 1, + STATE(2494), 1, sym_expression, - STATE(3115), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81634,7 +87012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81642,7 +87020,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81650,70 +87027,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74624] = 25, - ACTIONS(507), 1, + [82888] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1050), 1, + anon_sym_lambda, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, + ACTIONS(1659), 1, sym_identifier, - STATE(1462), 1, + STATE(265), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2455), 1, - sym_expression, - STATE(2496), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2491), 1, + sym_expression, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81721,7 +87098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81729,7 +87106,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81737,70 +87113,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74736] = 25, - ACTIONS(401), 1, + [82999] = 25, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(1665), 1, + ACTIONS(1659), 1, sym_identifier, - STATE(1195), 1, + STATE(258), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2542), 1, + STATE(2489), 1, sym_expression, - STATE(3077), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81808,7 +87184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81816,7 +87192,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81824,70 +87199,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74848] = 25, - ACTIONS(401), 1, + [83110] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, - anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1665), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1693), 1, sym_identifier, - STATE(1194), 1, + STATE(1541), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2545), 1, + STATE(2494), 1, sym_expression, - STATE(3077), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81895,7 +87270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81903,7 +87278,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81911,70 +87285,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [74960] = 25, - ACTIONS(764), 1, + [83221] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(772), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(780), 1, - anon_sym_not, - ACTIONS(784), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(790), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1155), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1693), 1, sym_identifier, - STATE(1642), 1, + STATE(1539), 1, sym_primary_expression, - STATE(2233), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2431), 1, - sym_expression, - STATE(2499), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3102), 1, + STATE(2494), 1, + sym_expression, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1975), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1976), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -81982,7 +87356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -81990,7 +87364,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -81998,70 +87371,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75072] = 25, - ACTIONS(401), 1, + [83332] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, - anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(53), 1, sym_float, - STATE(1183), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1693), 1, + sym_identifier, + STATE(1534), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2245), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2494), 1, + sym_expression, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82069,7 +87442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82077,7 +87450,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82085,70 +87457,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75184] = 25, - ACTIONS(874), 1, - sym_identifier, - ACTIONS(876), 1, + [83443] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(886), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(896), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1481), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1633), 1, sym_float, - STATE(377), 1, + STATE(1193), 1, sym_expression, - STATE(394), 1, + STATE(1195), 1, sym_primary_expression, - STATE(614), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2441), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2976), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(916), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1009), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82156,7 +87528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82164,7 +87536,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82172,70 +87543,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75296] = 25, - ACTIONS(876), 1, + [83554] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(882), 1, - anon_sym_lambda, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1145), 1, - sym_identifier, - ACTIONS(1147), 1, - anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, - anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(53), 1, sym_float, - STATE(316), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1693), 1, + sym_identifier, + STATE(1533), 1, sym_primary_expression, - STATE(1090), 1, + STATE(2183), 1, sym_selector_expression, - STATE(1162), 1, - sym_expression, - STATE(2442), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2976), 1, + STATE(2494), 1, + sym_expression, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(919), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(996), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(924), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(997), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82243,7 +87614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82251,7 +87622,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82259,70 +87629,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75408] = 25, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1091), 1, + [83665] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_not, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1543), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(53), 1, sym_float, - STATE(1035), 1, - sym_expression, - STATE(1062), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(1861), 1, + sym_identifier, + STATE(1454), 1, sym_primary_expression, - STATE(1075), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2334), 1, sym_dotted_name, - STATE(2987), 1, + STATE(2408), 1, + sym_expression, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1152), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1089), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82330,7 +87700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82338,7 +87708,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82346,70 +87715,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75520] = 25, - ACTIONS(453), 1, + [83776] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1073), 1, - sym_identifier, - ACTIONS(1075), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, anon_sym_not, - STATE(1537), 1, + ACTIONS(1693), 1, + sym_identifier, + STATE(1522), 1, sym_primary_expression, - STATE(1572), 1, - sym_expression, - STATE(1709), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2449), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2494), 1, + sym_expression, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1953), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82417,7 +87786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82425,7 +87794,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82433,70 +87801,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75632] = 25, - ACTIONS(453), 1, + [83887] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1127), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1129), 1, - anon_sym_not, - STATE(1968), 1, - sym_expression, - STATE(2040), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2046), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2377), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2054), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82504,7 +87872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82512,7 +87880,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82520,70 +87887,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75744] = 25, - ACTIONS(900), 1, + [83998] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(920), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(922), 1, + ACTIONS(1619), 1, sym_identifier, - ACTIONS(924), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(1627), 1, + anon_sym_QMARK_DOT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1633), 1, sym_float, - STATE(358), 1, - sym_expression, - STATE(395), 1, + STATE(1195), 1, sym_primary_expression, - STATE(544), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2256), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2469), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(920), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(981), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82591,7 +87958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82599,7 +87966,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82607,13 +87973,17 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75856] = 25, - ACTIONS(453), 1, + [84109] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(449), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, sym_string_start, + ACTIONS(545), 1, + sym_identifier, ACTIONS(547), 1, anon_sym_LPAREN, ACTIONS(549), 1, @@ -82626,51 +87996,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(563), 1, sym_float, - ACTIONS(1209), 1, - sym_identifier, - ACTIONS(1211), 1, - anon_sym_not, - STATE(1538), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2331), 1, + STATE(2401), 1, sym_expression, - STATE(2475), 1, + STATE(2457), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82678,7 +88044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82686,7 +88052,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82694,70 +88059,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [75968] = 25, - ACTIONS(971), 1, - sym_identifier, - ACTIONS(973), 1, + [84220] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_lambda, - ACTIONS(983), 1, - anon_sym_not, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1505), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(537), 1, sym_float, - STATE(1556), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1441), 1, sym_primary_expression, - STATE(1595), 1, - sym_expression, - STATE(1811), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2458), 1, + STATE(2399), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3070), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1876), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1902), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82765,7 +88130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82773,7 +88138,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82781,70 +88145,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76080] = 25, - ACTIONS(1091), 1, + [84331] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(1097), 1, - anon_sym_lambda, - ACTIONS(1111), 1, - sym_string_start, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1173), 1, - anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(537), 1, sym_float, - STATE(1044), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_not, + STATE(1412), 1, sym_primary_expression, - STATE(1207), 1, - sym_selector_expression, - STATE(2045), 1, + STATE(1448), 1, sym_expression, - STATE(2461), 1, + STATE(1521), 1, + sym_selector_expression, + STATE(2391), 1, sym_dotted_name, - STATE(2987), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1150), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1149), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1143), 4, + STATE(1620), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1110), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82852,7 +88216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82860,7 +88224,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82868,70 +88231,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76192] = 25, - ACTIONS(401), 1, + [84442] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(537), 1, sym_float, - STATE(1193), 1, - sym_expression, - STATE(1229), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1441), 1, sym_primary_expression, - STATE(1312), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2241), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -82939,7 +88302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -82947,7 +88310,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -82955,70 +88317,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76304] = 25, - ACTIONS(453), 1, + [84553] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1209), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1211), 1, - anon_sym_not, - STATE(1538), 1, + STATE(1411), 1, + sym_expression, + STATE(1441), 1, sym_primary_expression, - STATE(2218), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2328), 1, - sym_expression, - STATE(2475), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3115), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1956), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83026,7 +88388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83034,7 +88396,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83042,70 +88403,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76416] = 25, - ACTIONS(876), 1, + [84664] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(882), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(896), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1481), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1483), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1487), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1491), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1493), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1583), 1, - sym_identifier, - STATE(320), 1, + STATE(1189), 1, + sym_expression, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2562), 1, - sym_expression, - STATE(2976), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(917), 2, - sym_subscript, - sym_call, - ACTIONS(1489), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(923), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(894), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83113,7 +88474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(999), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83121,7 +88482,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83129,70 +88489,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76528] = 25, - ACTIONS(507), 1, + [84775] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1432), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1485), 1, - sym_expression, - STATE(1535), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2199), 1, + sym_expression, + STATE(2366), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83200,7 +88560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83208,7 +88568,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83216,70 +88575,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76640] = 25, - ACTIONS(1091), 1, + [84886] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1097), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1111), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1116), 1, anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1553), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1555), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1603), 1, - sym_identifier, - STATE(1061), 1, + STATE(1150), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1188), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2417), 1, sym_dotted_name, - STATE(2563), 1, - sym_expression, - STATE(2987), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1151), 2, - sym_subscript, - sym_call, - ACTIONS(1551), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1092), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1109), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83287,7 +88646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1118), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83295,7 +88654,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83303,70 +88661,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76752] = 25, - ACTIONS(764), 1, + [84997] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(768), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(772), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_lambda, - ACTIONS(776), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(784), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(1025), 1, + ACTIONS(1010), 1, sym_identifier, - ACTIONS(1033), 1, + ACTIONS(1012), 1, anon_sym_not, - STATE(1716), 1, + STATE(1554), 1, sym_primary_expression, - STATE(1755), 1, - sym_expression, - STATE(1911), 1, + STATE(2176), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2283), 1, + sym_expression, + STATE(2414), 1, sym_dotted_name, - STATE(3102), 1, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2008), 2, - sym_subscript, - sym_call, - ACTIONS(782), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1655), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1974), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1985), 4, + STATE(1832), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(786), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1973), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83374,7 +88732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1972), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83382,7 +88740,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83390,70 +88747,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76864] = 25, - ACTIONS(13), 1, + [85108] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1059), 1, - anon_sym_not, - STATE(1514), 1, - sym_expression, - STATE(1547), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1783), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2526), 1, + STATE(2255), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2471), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1859), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83461,7 +88818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83469,7 +88826,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83477,70 +88833,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [76976] = 25, - ACTIONS(401), 1, + [85219] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(784), 1, + anon_sym_lambda, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(790), 1, + anon_sym_not, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(1665), 1, + ACTIONS(800), 1, + sym_string_start, + ACTIONS(994), 1, sym_identifier, - STATE(1214), 1, + STATE(1644), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2545), 1, + STATE(2368), 1, sym_expression, - STATE(3077), 1, + STATE(2369), 1, + sym_dotted_name, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83548,7 +88904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83556,7 +88912,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83564,70 +88919,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77088] = 25, - ACTIONS(401), 1, + [85330] = 25, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, - anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1665), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1693), 1, sym_identifier, - STATE(1215), 1, + STATE(1523), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2545), 1, + STATE(2494), 1, sym_expression, - STATE(3077), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(1836), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83635,7 +88990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83643,7 +88998,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83651,70 +89005,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77200] = 25, - ACTIONS(453), 1, + [85441] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(463), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - STATE(1393), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2210), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2430), 1, - sym_dotted_name, - STATE(2436), 1, + STATE(2188), 1, sym_expression, - STATE(3115), 1, + STATE(2366), 1, + sym_dotted_name, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1557), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83722,7 +89076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83730,7 +89084,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83738,70 +89091,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77312] = 25, - ACTIONS(401), 1, + [85552] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, - anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(1665), 1, - sym_identifier, - STATE(1216), 1, + STATE(201), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2545), 1, + STATE(1126), 1, sym_expression, - STATE(3077), 1, + STATE(2443), 1, + sym_dotted_name, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83809,7 +89162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83817,7 +89170,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83825,59 +89177,59 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77424] = 25, + [85663] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1665), 1, - sym_identifier, - STATE(1219), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2545), 1, + STATE(2380), 1, sym_expression, - STATE(3077), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -83888,7 +89240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83896,7 +89248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83904,7 +89256,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83912,59 +89263,59 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77536] = 25, + [85774] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, anon_sym_lambda, ACTIONS(431), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1665), 1, + ACTIONS(1657), 1, sym_identifier, - STATE(1209), 1, + STATE(1157), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2545), 1, + STATE(2489), 1, sym_expression, - STATE(3077), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -83975,7 +89326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -83983,7 +89334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -83991,7 +89342,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -83999,59 +89349,59 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77648] = 25, + [85885] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, anon_sym_lambda, ACTIONS(431), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1665), 1, + ACTIONS(1657), 1, sym_identifier, - STATE(1218), 1, + STATE(1158), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2545), 1, + STATE(2502), 1, sym_expression, - STATE(3077), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -84062,7 +89412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84070,7 +89420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84078,7 +89428,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84086,59 +89435,59 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77760] = 25, + [85996] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1665), 1, - sym_identifier, - STATE(1226), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2545), 1, + STATE(2353), 1, sym_expression, - STATE(3077), 1, + STATE(2366), 1, + sym_dotted_name, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -84149,7 +89498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84157,7 +89506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84165,7 +89514,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84173,70 +89521,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77872] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [86107] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2329), 1, + STATE(2345), 1, sym_expression, - STATE(2487), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3046), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84244,7 +89592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84252,7 +89600,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84260,59 +89607,59 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [77984] = 25, + [86218] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(997), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(999), 1, - anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1225), 1, - sym_expression, - STATE(1229), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1312), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2381), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1419), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -84323,7 +89670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84331,7 +89678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84339,7 +89686,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84347,7 +89693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78096] = 25, + [86329] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -84356,50 +89702,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1165), 1, + ACTIONS(1235), 1, sym_identifier, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1183), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2254), 1, + STATE(2350), 1, sym_expression, - STATE(2532), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3077), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -84410,7 +89756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84418,7 +89764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84426,7 +89772,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84434,59 +89779,59 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78208] = 25, + [86440] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1165), 1, - sym_identifier, - ACTIONS(1527), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - STATE(1183), 1, + ACTIONS(1657), 1, + sym_identifier, + STATE(1173), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2250), 1, - sym_expression, - STATE(2532), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3077), 1, + STATE(2502), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1420), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1329), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1327), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -84497,7 +89842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1341), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84505,7 +89850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84513,7 +89858,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84521,70 +89865,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78320] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, + [86551] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(906), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(920), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1455), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, + ACTIONS(1627), 1, + anon_sym_QMARK_DOT, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1633), 1, sym_float, - STATE(311), 1, + ACTIONS(1657), 1, + sym_identifier, + STATE(1175), 1, sym_primary_expression, - STATE(1144), 1, + STATE(2183), 1, sym_selector_expression, - STATE(1170), 1, - sym_expression, - STATE(2448), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3041), 1, + STATE(2502), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(930), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(918), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(915), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84592,7 +89936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(914), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84600,7 +89944,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84608,70 +89951,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78432] = 25, - ACTIONS(401), 1, + [86662] = 25, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1527), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1665), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1667), 1, - anon_sym_not, - STATE(1203), 1, + STATE(1404), 1, + sym_expression, + STATE(1441), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2439), 1, sym_dotted_name, - STATE(2545), 1, - sym_expression, - STATE(3077), 1, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84679,7 +90022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84687,7 +90030,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84695,59 +90037,59 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78544] = 25, + [86773] = 25, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, anon_sym_lambda, ACTIONS(431), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1527), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1529), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1533), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1539), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1665), 1, + ACTIONS(1657), 1, sym_identifier, - STATE(1203), 1, + STATE(1176), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2545), 1, + STATE(2502), 1, sym_expression, - STATE(3077), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1365), 2, - sym_subscript, - sym_call, - ACTIONS(1535), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1386), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -84758,7 +90100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84766,7 +90108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1350), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84774,7 +90116,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84782,70 +90123,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78656] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [86884] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1621), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + ACTIONS(1657), 1, + sym_identifier, + STATE(1177), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2363), 1, - sym_expression, - STATE(2487), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3046), 1, + STATE(2502), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84853,7 +90194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84861,7 +90202,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84869,70 +90209,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78768] = 25, - ACTIONS(973), 1, + [86995] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(993), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1177), 1, - sym_identifier, - ACTIONS(1179), 1, + ACTIONS(972), 1, anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1633), 1, sym_float, - STATE(1544), 1, + ACTIONS(1657), 1, + sym_identifier, + STATE(1178), 1, sym_primary_expression, - STATE(2219), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2345), 1, - sym_expression, - STATE(2470), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3070), 1, + STATE(2502), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1927), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1856), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1870), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1865), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -84940,7 +90280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -84948,7 +90288,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -84956,70 +90295,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78880] = 25, - ACTIONS(507), 1, + [87106] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, + ACTIONS(1657), 1, sym_identifier, - STATE(1462), 1, + STATE(1179), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2365), 1, - sym_expression, - STATE(2496), 1, + STATE(2388), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2502), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85027,7 +90366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85035,7 +90374,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85043,70 +90381,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [78992] = 25, - ACTIONS(507), 1, + [87217] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1519), 1, - sym_identifier, - STATE(1439), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2366), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2475), 1, sym_expression, - STATE(3087), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85114,7 +90452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85122,7 +90460,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85130,70 +90467,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79104] = 25, - ACTIONS(507), 1, + [87328] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1519), 1, + ACTIONS(1657), 1, sym_identifier, - ACTIONS(1669), 1, - anon_sym_not, - STATE(1439), 1, + STATE(1181), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2502), 1, sym_expression, - STATE(3087), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85201,7 +90538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85209,7 +90546,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85217,70 +90553,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79216] = 25, - ACTIONS(973), 1, + [87439] = 25, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(979), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(993), 1, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(1201), 1, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, + sym_identifier, + ACTIONS(1295), 1, anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(1507), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1509), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(1511), 1, - anon_sym_QMARK_DOT, - ACTIONS(1515), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(1517), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(1659), 1, - sym_identifier, - STATE(1493), 1, + STATE(237), 1, + sym_expression, + STATE(288), 1, sym_primary_expression, - STATE(2240), 1, + STATE(416), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2445), 1, sym_dotted_name, - STATE(2558), 1, - sym_expression, - STATE(3070), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1835), 2, - sym_subscript, - sym_call, - ACTIONS(1513), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1881), 4, + STATE(898), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(991), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85288,7 +90624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1866), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85296,7 +90632,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85304,70 +90639,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79328] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [87550] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - STATE(1604), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2487), 1, - sym_dotted_name, - STATE(2505), 1, + STATE(2341), 1, sym_expression, - STATE(3046), 1, + STATE(2366), 1, + sym_dotted_name, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1939), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1942), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1886), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85375,7 +90710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85383,7 +90718,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85391,70 +90725,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79440] = 25, - ACTIONS(453), 1, + [87661] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1116), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1637), 1, - sym_identifier, - STATE(1496), 1, + STATE(1150), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1183), 1, + sym_expression, + STATE(1276), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2417), 1, sym_dotted_name, - STATE(2543), 1, - sym_expression, - STATE(3115), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1290), 2, - sym_subscript, - sym_call, - ACTIONS(1565), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1261), 4, + STATE(1290), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85462,7 +90796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85470,7 +90804,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85478,70 +90811,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79552] = 25, - ACTIONS(453), 1, + [87772] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(459), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(473), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1045), 1, - anon_sym_not, - STATE(1412), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1414), 1, - sym_expression, - STATE(1424), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2494), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3115), 1, + STATE(2476), 1, + sym_expression, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1291), 2, - sym_subscript, - sym_call, - ACTIONS(559), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1565), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(471), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85549,7 +90882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1289), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85557,7 +90890,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85565,70 +90897,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79664] = 25, - ACTIONS(507), 1, + [87883] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2297), 1, + STATE(2191), 1, sym_expression, - STATE(2496), 1, + STATE(2366), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85636,7 +90968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85644,7 +90976,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85652,70 +90983,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79776] = 25, - ACTIONS(507), 1, + [87994] = 25, + ACTIONS(774), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(778), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(784), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(788), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(790), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(794), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(798), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(800), 1, sym_string_start, - ACTIONS(686), 1, + ACTIONS(994), 1, sym_identifier, - STATE(1462), 1, + STATE(1644), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2179), 1, sym_selector_expression, - STATE(2290), 1, - sym_expression, - STATE(2496), 1, + STATE(2369), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2465), 1, + sym_expression, + STATE(3125), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1919), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(792), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1973), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(796), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1972), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85723,7 +91054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1969), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85731,7 +91062,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85739,70 +91069,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [79888] = 25, - ACTIONS(507), 1, + [88105] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1235), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1432), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1448), 1, - sym_expression, - STATE(1535), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2482), 1, + STATE(2190), 1, + sym_expression, + STATE(2366), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1657), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85810,7 +91140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85818,7 +91148,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85826,70 +91155,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80000] = 25, - ACTIONS(507), 1, + [88216] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1050), 1, + anon_sym_lambda, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + STATE(201), 1, sym_primary_expression, - STATE(1474), 1, - sym_expression, - STATE(2213), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2496), 1, + STATE(1133), 1, + sym_expression, + STATE(2443), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85897,7 +91226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85905,7 +91234,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -85913,70 +91241,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80112] = 25, - ACTIONS(13), 1, + [88327] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1050), 1, anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1565), 1, + anon_sym_LPAREN, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_LBRACE, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1541), 1, - sym_identifier, - ACTIONS(1671), 1, - anon_sym_not, - STATE(1531), 1, + STATE(189), 1, + sym_expression, + STATE(201), 1, sym_primary_expression, - STATE(2240), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2443), 1, sym_dotted_name, - STATE(2567), 1, - sym_expression, - STATE(3046), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -85984,7 +91312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -85992,7 +91320,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86000,70 +91327,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80224] = 25, - ACTIONS(507), 1, + [88438] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1519), 1, + ACTIONS(1657), 1, sym_identifier, - STATE(1451), 1, + ACTIONS(1863), 1, + anon_sym_not, + STATE(1163), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2502), 1, sym_expression, - STATE(3087), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -86071,7 +91398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -86079,7 +91406,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86087,70 +91413,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80336] = 25, - ACTIONS(507), 1, + [88549] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(972), 1, + anon_sym_not, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1519), 1, + ACTIONS(1657), 1, sym_identifier, - STATE(1455), 1, + STATE(1163), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2183), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2388), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2502), 1, sym_expression, - STATE(3087), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, + STATE(1312), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -86158,7 +91484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -86166,7 +91492,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86174,7 +91499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80448] = 25, + [88660] = 25, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -86187,46 +91512,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(525), 1, anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, ACTIONS(531), 1, anon_sym_DQUOTE, ACTIONS(537), 1, sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1519), 1, + ACTIONS(684), 1, sym_identifier, - STATE(1456), 1, + STATE(1441), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2161), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2551), 1, + STATE(2418), 1, sym_expression, - STATE(3087), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(3110), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, + STATE(1710), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1707), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, + STATE(1711), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -86237,7 +91562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1705), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -86245,7 +91570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1702), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -86253,7 +91578,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86261,70 +91585,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80560] = 25, - ACTIONS(507), 1, + [88771] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1519), 1, - sym_identifier, - STATE(1457), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2302), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2387), 1, sym_expression, - STATE(3087), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -86332,7 +91656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -86340,7 +91664,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86348,70 +91671,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80672] = 25, - ACTIONS(507), 1, + [88882] = 25, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1619), 1, + sym_identifier, + ACTIONS(1621), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1627), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1633), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1519), 1, - sym_identifier, - STATE(1458), 1, + STATE(1195), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2116), 1, sym_selector_expression, - STATE(2469), 1, + STATE(2257), 1, sym_dotted_name, - STATE(2551), 1, + STATE(2393), 1, sym_expression, - STATE(3087), 1, + STATE(3107), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1346), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1629), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1323), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, + STATE(1364), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1308), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -86419,7 +91742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1321), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -86427,7 +91750,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86435,70 +91757,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80784] = 25, - ACTIONS(507), 1, + [88993] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1519), 1, - sym_identifier, - STATE(1459), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2551), 1, + STATE(2413), 1, sym_expression, - STATE(3087), 1, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -86506,7 +91828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -86514,7 +91836,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86522,70 +91843,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [80896] = 25, - ACTIONS(507), 1, + [89104] = 25, + ACTIONS(441), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(449), 1, + anon_sym_lambda, + ACTIONS(455), 1, + anon_sym_not, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(557), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(561), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(563), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1519), 1, - sym_identifier, - STATE(1460), 1, + STATE(1360), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2154), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2551), 1, + STATE(2383), 1, sym_expression, - STATE(3087), 1, + STATE(2457), 1, + sym_dotted_name, + STATE(3143), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1258), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(559), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1253), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1826), 4, + STATE(1524), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(465), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1239), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -86593,7 +91914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1238), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -86601,7 +91922,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86609,7 +91929,9 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81008] = 25, + [89215] = 25, + ACTIONS(9), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_DOT, ACTIONS(19), 1, @@ -86620,6 +91942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(43), 1, anon_sym_QMARK_DOT, + ACTIONS(45), 1, + anon_sym_not, ACTIONS(49), 1, anon_sym_DQUOTE, ACTIONS(53), 1, @@ -86628,40 +91952,36 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(180), 1, anon_sym_LBRACK, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1541), 1, - sym_identifier, - STATE(1531), 1, + STATE(1454), 1, sym_primary_expression, - STATE(2240), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2567), 1, + STATE(2384), 1, sym_expression, - STATE(3046), 1, + STATE(2467), 1, + sym_dotted_name, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1855), 2, - sym_subscript, - sym_call, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1854), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -86672,7 +91992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1287), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -86680,7 +92000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1879), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -86688,7 +92008,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86696,70 +92015,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81120] = 25, - ACTIONS(507), 1, + [89326] = 25, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1050), 1, + anon_sym_lambda, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1064), 1, + sym_string_start, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1565), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1569), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1573), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1575), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + STATE(201), 1, sym_primary_expression, - STATE(1468), 1, + STATE(315), 1, sym_expression, - STATE(2213), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2443), 1, sym_dotted_name, - STATE(3087), 1, + STATE(2930), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(517), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1571), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(518), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(516), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1062), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(520), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -86767,7 +92086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(521), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -86775,7 +92094,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86783,70 +92101,70 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81232] = 25, - ACTIONS(507), 1, + [89437] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1454), 1, sym_primary_expression, - STATE(2213), 1, + STATE(2162), 1, sym_selector_expression, - STATE(2308), 1, + STATE(2264), 1, sym_expression, - STATE(2496), 1, + STATE(2467), 1, sym_dotted_name, - STATE(3087), 1, + STATE(3095), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, + STATE(1797), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, + STATE(1896), 3, + sym_binary_operator, + sym_subscript, + sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1696), 4, + STATE(1877), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1638), 7, + STATE(1906), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -86854,7 +92172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1673), 15, + STATE(1909), 14, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -86862,7 +92180,6 @@ static const uint16_t ts_small_parse_table[] = { sym_braces_expression, sym_string_literal_expr, sym_config_expr, - sym_binary_operator, sym_unary_operator, sym_select_suffix, sym_attribute, @@ -86870,7913 +92187,24 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [81344] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, - sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2287), 1, - sym_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(3087), 1, - sym_quant_op, + [89548] = 7, + ACTIONS(1865), 1, + sym_isMutableFlag, + STATE(1100), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2186), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1696), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1638), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1673), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [81456] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1007), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1432), 1, - sym_primary_expression, - STATE(1467), 1, - sym_expression, - STATE(1535), 1, - sym_selector_expression, - STATE(2482), 1, - sym_dotted_name, - STATE(3087), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1799), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1657), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1638), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1673), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [81568] = 25, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, - anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(910), 1, - anon_sym_not, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_LBRACE, - ACTIONS(1461), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_float, - STATE(311), 1, - sym_primary_expression, - STATE(1144), 1, - sym_selector_expression, - STATE(1163), 1, - sym_expression, - STATE(2448), 1, - sym_dotted_name, - STATE(3041), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(928), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(918), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(930), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(918), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(915), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(914), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [81680] = 25, - ACTIONS(900), 1, - anon_sym_DOT, - ACTIONS(906), 1, - anon_sym_lambda, - ACTIONS(920), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1453), 1, - anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_LBRACE, - ACTIONS(1461), 1, - anon_sym_DQUOTE, - ACTIONS(1463), 1, - sym_float, - ACTIONS(1653), 1, - sym_identifier, - STATE(349), 1, - sym_primary_expression, - STATE(2240), 1, - sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2554), 1, - sym_expression, - STATE(3041), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(922), 2, - sym_subscript, - sym_call, - ACTIONS(1459), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(927), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(918), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(914), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [81792] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(686), 1, - sym_identifier, - STATE(1462), 1, - sym_primary_expression, - STATE(2213), 1, - sym_selector_expression, - STATE(2294), 1, - sym_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(3087), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1693), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1692), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1696), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1638), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1673), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [81904] = 25, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(180), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1059), 1, - anon_sym_not, - STATE(1512), 1, - sym_expression, - STATE(1547), 1, - sym_primary_expression, - STATE(1783), 1, - sym_selector_expression, - STATE(2526), 1, - sym_dotted_name, - STATE(3046), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1868), 2, - sym_subscript, - sym_call, - ACTIONS(47), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1929), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1859), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1886), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1879), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [82016] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_not, - ACTIONS(1519), 1, - sym_identifier, - STATE(1464), 1, - sym_primary_expression, - STATE(2240), 1, - sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2542), 1, - sym_expression, - STATE(3087), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1808), 2, - sym_subscript, - sym_call, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1826), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(535), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1673), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [82128] = 25, - ACTIONS(453), 1, - anon_sym_DOT, - ACTIONS(459), 1, - anon_sym_lambda, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - sym_float, - ACTIONS(1199), 1, - sym_identifier, - ACTIONS(1201), 1, - anon_sym_not, - STATE(1998), 1, - sym_primary_expression, - STATE(2240), 1, - sym_selector_expression, - STATE(2469), 1, - sym_dotted_name, - STATE(2560), 1, - sym_expression, - STATE(3115), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1300), 2, - sym_subscript, - sym_call, - ACTIONS(1523), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1264), 3, - sym_in_operation, - sym_not_in_operation, - sym_concatenation, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1261), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(471), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1287), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1289), 15, - sym_schema_expr, - sym_lambda_expr, - sym_quant_expr, - sym_paren_expression, - sym_braces_expression, - sym_string_literal_expr, - sym_config_expr, - sym_binary_operator, - sym_unary_operator, - sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_item, - sym_null_coalesce, - sym_string, - [82240] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1675), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1673), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82307] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1677), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1679), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82374] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1683), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82441] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1223), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1225), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82508] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1687), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1685), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82575] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1687), 2, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - ACTIONS(1685), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1681), 24, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1683), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82646] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1687), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1685), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82713] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1683), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1681), 13, - anon_sym_STAR_STAR, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - ACTIONS(1687), 13, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1685), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82784] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1687), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1685), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82851] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1675), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1673), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82918] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1687), 2, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - ACTIONS(1685), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1681), 24, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1683), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [82989] = 6, - ACTIONS(1689), 1, - anon_sym_in, - ACTIONS(1691), 1, - anon_sym_not, - ACTIONS(1693), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1683), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83062] = 6, - ACTIONS(1695), 1, - anon_sym_in, - ACTIONS(1697), 1, - anon_sym_not, - ACTIONS(1699), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1683), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83135] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1701), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1703), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83202] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1705), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1707), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83269] = 6, - ACTIONS(1689), 1, - anon_sym_in, - ACTIONS(1691), 1, - anon_sym_not, - ACTIONS(1693), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1683), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83342] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1683), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1681), 13, - anon_sym_STAR_STAR, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - ACTIONS(1687), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1685), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83413] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1709), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1711), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83480] = 6, - ACTIONS(1713), 1, - anon_sym_in, - ACTIONS(1715), 1, - anon_sym_not, - ACTIONS(1717), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1683), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83553] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1721), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1719), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83620] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1725), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1723), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83687] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1729), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1727), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83754] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1733), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1731), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83821] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1737), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1735), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83888] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1741), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1739), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [83955] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1745), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1743), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84022] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1749), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1747), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84089] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1753), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1751), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84156] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1757), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1755), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84223] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1677), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1679), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84290] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1677), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1679), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84357] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1761), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1759), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84424] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1763), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1765), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84491] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1769), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1767), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84558] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1773), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1771), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84625] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1773), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1771), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84692] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1777), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1775), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84759] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1781), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1779), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84826] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1783), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1785), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84893] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1789), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1787), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [84960] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1791), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1793), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85027] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1795), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1797), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85094] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1801), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1799), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85161] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1805), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1803), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85228] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1705), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1707), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85295] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1809), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1807), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85362] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1813), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1811), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85429] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1817), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1815), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85496] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1819), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1821), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85563] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1823), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1825), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85630] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1829), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1827), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85697] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1833), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1831), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85764] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1835), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1837), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85831] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1839), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1841), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85898] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1843), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1845), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [85965] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1849), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1847), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86032] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1853), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1851), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86099] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1857), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1855), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86166] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1861), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1859), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86233] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1865), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1863), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86300] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1867), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1869), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86367] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1865), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1863), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86434] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1861), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1859), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86501] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1857), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1855), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86568] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1853), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1851), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86635] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1867), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1869), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86702] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1849), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1847), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86769] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1833), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1831), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86836] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1843), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1845), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86903] = 6, - ACTIONS(1713), 1, - anon_sym_in, - ACTIONS(1871), 1, - anon_sym_not, - ACTIONS(1873), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 25, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1683), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [86976] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1829), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1827), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87043] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1839), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1841), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87110] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1835), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1837), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87177] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1817), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1815), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87244] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1823), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1825), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87311] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1819), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1821), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87378] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1795), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1797), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87445] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1791), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1793), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87512] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1783), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1785), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87579] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1763), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1765), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87646] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1709), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1711), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87713] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1705), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1707), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87780] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1701), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1703), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87847] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1813), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1811), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87914] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1687), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1685), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [87981] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1223), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1225), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88048] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1809), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1807), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88115] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1683), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88182] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1705), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1707), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88249] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1805), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1803), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88316] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1801), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1799), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88383] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1789), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1787), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88450] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1781), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1779), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88517] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1777), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1775), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88584] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1773), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1771), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88651] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1773), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1771), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88718] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1769), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1767), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88785] = 6, - ACTIONS(1695), 1, - anon_sym_in, - ACTIONS(1875), 1, - anon_sym_not, - ACTIONS(1877), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1683), 30, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88858] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1761), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1759), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88925] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1677), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1679), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [88992] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1757), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1755), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [89059] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1753), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1751), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [89126] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1749), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1747), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [89193] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1745), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1743), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [89260] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1741), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1739), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [89327] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1737), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1735), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [89394] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1733), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1731), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [89461] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1729), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1727), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [89528] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1721), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1719), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [89595] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1725), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1723), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [89662] = 7, - ACTIONS(1879), 1, - sym_isMutableFlag, - STATE(1071), 1, - aux_sym_comparison_operator_repeat1, - STATE(1153), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(748), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [89731] = 10, - ACTIONS(1471), 1, - anon_sym_EQ, - ACTIONS(1881), 1, - anon_sym_LBRACE, - ACTIONS(1883), 1, - sym_isMutableFlag, - STATE(1954), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2221), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1469), 13, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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(746), 14, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 19, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [89806] = 7, - ACTIONS(1879), 1, - sym_isMutableFlag, - STATE(1153), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2237), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, + ACTIONS(690), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, @@ -94795,7 +92223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(748), 25, + ACTIONS(692), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94821,319 +92249,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89875] = 7, - ACTIONS(1879), 1, + [89617] = 7, + ACTIONS(1865), 1, sym_isMutableFlag, - STATE(1153), 1, - sym_dict_expr, - STATE(1189), 1, - aux_sym_comparison_operator_repeat1, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(748), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [89944] = 4, - ACTIONS(1885), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1418), 24, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1420), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [90005] = 12, - ACTIONS(1887), 1, - anon_sym_LPAREN, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, - anon_sym_QMARK_DOT, - ACTIONS(1899), 1, - anon_sym_QMARK_LBRACK, - STATE(1128), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 18, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(1360), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [90082] = 5, - ACTIONS(1901), 1, - anon_sym_EQ, - STATE(1046), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1340), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1342), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [90145] = 6, - ACTIONS(1903), 1, - anon_sym_DOT, - ACTIONS(1906), 1, - anon_sym_QMARK_DOT, - STATE(1029), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1362), 23, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1367), 24, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [90210] = 6, - ACTIONS(1909), 1, - anon_sym_DOT, - ACTIONS(1912), 1, - anon_sym_QMARK_DOT, + STATE(1100), 1, + sym_dict_expr, + STATE(1187), 1, + aux_sym_comparison_operator_repeat1, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1372), 22, + ACTIONS(690), 23, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, @@ -95156,7 +92285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1377), 24, + ACTIONS(692), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95164,6 +92293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -95181,17 +92311,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90275] = 5, - STATE(1031), 1, + [89686] = 10, + ACTIONS(1024), 1, + anon_sym_EQ, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_isMutableFlag, + STATE(1802), 1, + sym_dict_expr, + STATE(2000), 1, aux_sym_dotted_name_repeat1, + STATE(2174), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1915), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1362), 15, - anon_sym_EQ, + ACTIONS(1026), 13, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_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(690), 14, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS, @@ -95206,50 +92356,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 32, + ACTIONS(692), 19, + sym__newline, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_QMARK_LBRACK, - [90338] = 4, - STATE(1046), 1, - aux_sym_union_type_repeat1, + [89761] = 7, + ACTIONS(1865), 1, + sym_isMutableFlag, + STATE(1042), 1, + aux_sym_comparison_operator_repeat1, + STATE(1100), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 24, + ACTIONS(690), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95270,7 +92412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1263), 25, + ACTIONS(692), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95296,17 +92438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90399] = 4, + [89830] = 4, + STATE(1031), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1334), 23, + ACTIONS(1342), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95327,7 +92469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1332), 25, + ACTIONS(1344), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95353,38 +92495,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90460] = 4, - STATE(1046), 1, - aux_sym_union_type_repeat1, + [89891] = 21, + ACTIONS(1871), 1, + anon_sym_LPAREN, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1879), 1, + anon_sym_STAR_STAR, + ACTIONS(1881), 1, + anon_sym_QMARK_DOT, + ACTIONS(1883), 1, + anon_sym_not, + ACTIONS(1889), 1, + anon_sym_PIPE, + ACTIONS(1891), 1, + anon_sym_AMP, + ACTIONS(1893), 1, + anon_sym_CARET, + ACTIONS(1899), 1, + anon_sym_is, + ACTIONS(1901), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(1162), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 24, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1895), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1875), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1897), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(880), 16, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1274), 25, + [89986] = 4, + ACTIONS(1903), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95395,7 +92586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -95410,19 +92600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90521] = 5, - ACTIONS(1918), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1432), 23, + ACTIONS(1082), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95433,6 +92615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -95443,39 +92626,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1430), 24, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [90584] = 4, + [90047] = 6, + ACTIONS(1905), 1, + anon_sym_and, + ACTIONS(1907), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, + STATE(1035), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1219), 23, + ACTIONS(1078), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95487,7 +92649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -95499,7 +92660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1221), 25, + ACTIONS(1080), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95508,7 +92669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -95525,38 +92685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90645] = 4, + [90112] = 4, + ACTIONS(1909), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1219), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1221), 25, + ACTIONS(1313), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95567,7 +92702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -95582,13 +92716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90706] = 4, - STATE(1046), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1314), 24, + ACTIONS(1311), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95603,6 +92731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -95613,42 +92742,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1312), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [90767] = 5, - ACTIONS(1918), 1, + [90173] = 5, + ACTIONS(1907), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, + STATE(1035), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1441), 23, + ACTIONS(918), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95672,7 +92775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1439), 24, + ACTIONS(916), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95697,16 +92800,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90830] = 5, - ACTIONS(1918), 1, + [90236] = 5, + ACTIONS(1907), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, + STATE(1035), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1447), 23, + ACTIONS(1072), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95730,7 +92833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1445), 24, + ACTIONS(1074), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95755,17 +92858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90893] = 4, + [90299] = 6, + ACTIONS(1911), 1, + anon_sym_DOT, + ACTIONS(1914), 1, + anon_sym_QMARK_DOT, + STATE(1005), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1272), 23, - anon_sym_DOT, + ACTIONS(1374), 23, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95786,7 +92892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1270), 25, + ACTIONS(1379), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95794,7 +92900,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -95812,13 +92917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90954] = 4, - STATE(1046), 1, + [90364] = 5, + ACTIONS(1917), 1, + anon_sym_PIPE, + STATE(1006), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 24, + ACTIONS(1188), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95843,7 +92950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1259), 25, + ACTIONS(1190), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95857,7 +92964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95869,32 +92975,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91015] = 10, - ACTIONS(1887), 1, - anon_sym_LPAREN, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, - anon_sym_QMARK_DOT, - ACTIONS(1899), 1, - anon_sym_QMARK_LBRACK, - STATE(1128), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [90427] = 4, + ACTIONS(1920), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 20, + ACTIONS(1231), 24, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -95907,11 +93004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1360), 23, + ACTIONS(1229), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95922,6 +93021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -95932,166 +93032,154 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [91088] = 21, - ACTIONS(1887), 1, + [90488] = 13, + ACTIONS(1871), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_STAR_STAR, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_QMARK_DOT, - ACTIONS(1899), 1, + ACTIONS(1901), 1, anon_sym_QMARK_LBRACK, - ACTIONS(1922), 1, - anon_sym_not, - ACTIONS(1926), 1, - anon_sym_PIPE, - ACTIONS(1928), 1, - anon_sym_AMP, - ACTIONS(1930), 1, - anon_sym_CARET, - ACTIONS(1936), 1, - anon_sym_is, - STATE(1128), 1, + STATE(1095), 1, sym_argument_list, - STATE(1186), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1924), 2, + ACTIONS(1885), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1920), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1934), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 7, + ACTIONS(1887), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(944), 16, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, - ACTIONS(1225), 16, + ACTIONS(942), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [91183] = 22, - ACTIONS(1352), 1, - anon_sym_not, - ACTIONS(1356), 1, - anon_sym_is, - ACTIONS(1887), 1, + [90567] = 14, + ACTIONS(1871), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_STAR_STAR, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_QMARK_DOT, - ACTIONS(1899), 1, + ACTIONS(1901), 1, anon_sym_QMARK_LBRACK, - ACTIONS(1926), 1, - anon_sym_PIPE, - ACTIONS(1928), 1, - anon_sym_AMP, - ACTIONS(1930), 1, - anon_sym_CARET, - STATE(1128), 1, + STATE(1095), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1924), 2, + ACTIONS(1885), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1932), 2, + ACTIONS(1887), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1350), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1354), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1225), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1408), 7, + ACTIONS(944), 14, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DQUOTE, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, sym_float, - ACTIONS(1410), 11, + ACTIONS(942), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [91280] = 4, - STATE(1055), 1, - aux_sym_union_type_repeat1, + [90648] = 6, + ACTIONS(1905), 1, + anon_sym_and, + ACTIONS(1907), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 24, + STATE(1035), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96100,7 +93188,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -96112,7 +93199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1338), 25, + ACTIONS(916), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96121,7 +93208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -96138,82 +93224,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91341] = 10, - ACTIONS(1887), 1, - anon_sym_LPAREN, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, + [90713] = 8, + ACTIONS(916), 1, anon_sym_QMARK_DOT, - ACTIONS(1899), 1, - anon_sym_QMARK_LBRACK, - STATE(1128), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1358), 20, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(1360), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, + ACTIONS(1905), 1, anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [91414] = 5, - ACTIONS(1918), 1, + ACTIONS(1907), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, + STATE(1035), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1467), 23, + ACTIONS(918), 4, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_or, + ACTIONS(924), 18, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96222,8 +93251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -96234,7 +93261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1465), 24, + ACTIONS(926), 23, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96242,7 +93269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -96259,54 +93285,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91477] = 16, - ACTIONS(1887), 1, + [90782] = 15, + ACTIONS(1871), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_STAR_STAR, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_QMARK_DOT, - ACTIONS(1899), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1928), 1, - anon_sym_AMP, - ACTIONS(1930), 1, + ACTIONS(1893), 1, anon_sym_CARET, - STATE(1128), 1, + ACTIONS(1901), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1924), 2, + ACTIONS(1885), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1932), 2, + ACTIONS(1887), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1358), 12, + ACTIONS(944), 13, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DQUOTE, anon_sym_PIPE, + anon_sym_AMP, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1360), 21, + ACTIONS(942), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96328,120 +93353,115 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [91562] = 15, - ACTIONS(1887), 1, - anon_sym_LPAREN, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, - anon_sym_QMARK_DOT, - ACTIONS(1899), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1930), 1, - anon_sym_CARET, - STATE(1128), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [90865] = 8, + ACTIONS(1905), 1, + anon_sym_and, + ACTIONS(1907), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + STATE(1035), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 6, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1924), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 13, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(916), 12, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(926), 12, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_TILDE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - sym_float, - ACTIONS(1360), 21, + anon_sym_QMARK_LBRACK, + ACTIONS(918), 16, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [91645] = 14, - ACTIONS(1887), 1, + [90934] = 16, + ACTIONS(1871), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_STAR_STAR, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_QMARK_DOT, - ACTIONS(1899), 1, + ACTIONS(1891), 1, + anon_sym_AMP, + ACTIONS(1893), 1, + anon_sym_CARET, + ACTIONS(1901), 1, anon_sym_QMARK_LBRACK, - STATE(1128), 1, + STATE(1095), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1924), 2, + ACTIONS(1885), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1932), 2, + ACTIONS(1887), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1358), 14, + ACTIONS(944), 12, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DQUOTE, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1360), 21, + ACTIONS(942), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96463,39 +93483,38 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [91726] = 13, - ACTIONS(1887), 1, + [91019] = 12, + ACTIONS(1871), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_STAR_STAR, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_QMARK_DOT, - ACTIONS(1899), 1, + ACTIONS(1901), 1, anon_sym_QMARK_LBRACK, - STATE(1128), 1, + STATE(1095), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, + ACTIONS(1887), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1924), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1358), 16, + ACTIONS(944), 18, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -96507,7 +93526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1360), 21, + ACTIONS(942), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96529,13 +93548,38 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [91805] = 4, - ACTIONS(1938), 1, - anon_sym_DASH_GT, + [91096] = 4, + STATE(1031), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 24, + ACTIONS(1323), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(1325), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96546,6 +93590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -96560,11 +93605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1414), 25, + [91157] = 5, + ACTIONS(1907), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1035), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1068), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96575,7 +93628,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -96586,28 +93638,45 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [91866] = 11, - ACTIONS(1091), 1, + ACTIONS(1070), 24, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [91220] = 6, + ACTIONS(1922), 1, anon_sym_DOT, - ACTIONS(1549), 1, + ACTIONS(1925), 1, anon_sym_QMARK_DOT, - ACTIONS(1918), 1, - anon_sym_PLUS, - ACTIONS(1940), 1, - anon_sym_as, - ACTIONS(1942), 1, - anon_sym_if, - ACTIONS(1944), 1, - anon_sym_and, - ACTIONS(1946), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, + STATE(1018), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1390), 18, + ACTIONS(1433), 22, + anon_sym_as, + anon_sym_if, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96616,6 +93685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -96626,7 +93697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1388), 23, + ACTIONS(1438), 24, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96634,6 +93705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -96650,44 +93722,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91941] = 5, - ACTIONS(1948), 1, - anon_sym_PIPE, - STATE(1055), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1263), 24, - sym_string_start, - anon_sym_COMMA, + [91285] = 21, + ACTIONS(1871), 1, anon_sym_LPAREN, + ACTIONS(1873), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1879), 1, anon_sym_STAR_STAR, + ACTIONS(1881), 1, anon_sym_QMARK_DOT, + ACTIONS(1883), 1, + anon_sym_not, + ACTIONS(1889), 1, + anon_sym_PIPE, + ACTIONS(1891), 1, + anon_sym_AMP, + ACTIONS(1893), 1, + anon_sym_CARET, + ACTIONS(1899), 1, + anon_sym_is, + ACTIONS(1901), 1, + anon_sym_QMARK_LBRACK, + STATE(1052), 1, + aux_sym_comparison_operator_repeat1, + STATE(1095), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1885), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1887), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(1875), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1897), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(948), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(1265), 24, + ACTIONS(880), 16, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [91380] = 5, + ACTIONS(1928), 1, anon_sym_EQ, + STATE(1031), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1362), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96708,176 +93828,174 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [92004] = 22, - ACTIONS(1352), 1, - anon_sym_not, - ACTIONS(1356), 1, - anon_sym_is, - ACTIONS(1887), 1, + ACTIONS(1364), 25, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1893), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(1895), 1, anon_sym_QMARK_DOT, - ACTIONS(1899), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1926), 1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(1928), 1, anon_sym_AMP, - ACTIONS(1930), 1, anon_sym_CARET, - STATE(1128), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [91443] = 10, + ACTIONS(1871), 1, + anon_sym_LPAREN, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1879), 1, + anon_sym_STAR_STAR, + ACTIONS(1881), 1, + anon_sym_QMARK_DOT, + ACTIONS(1901), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1924), 2, + ACTIONS(944), 20, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1932), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1350), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1354), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1225), 5, + sym_float, + ACTIONS(942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1346), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(1348), 11, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [92101] = 22, - ACTIONS(1352), 1, - anon_sym_not, - ACTIONS(1356), 1, - anon_sym_is, - ACTIONS(1887), 1, - anon_sym_LPAREN, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, - anon_sym_QMARK_DOT, - ACTIONS(1899), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1926), 1, - anon_sym_PIPE, - ACTIONS(1928), 1, - anon_sym_AMP, - ACTIONS(1930), 1, - anon_sym_CARET, - STATE(1128), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [91516] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1924), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1350), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1354), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1225), 5, + STATE(1035), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1327), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1424), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(1426), 11, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [92198] = 9, - ACTIONS(1091), 1, - anon_sym_DOT, - ACTIONS(1549), 1, + ACTIONS(1329), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - ACTIONS(1918), 1, anon_sym_PLUS, - ACTIONS(1944), 1, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [91577] = 11, + ACTIONS(1265), 1, + anon_sym_DOT, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(1905), 1, anon_sym_and, - ACTIONS(1946), 1, + ACTIONS(1907), 1, + anon_sym_PLUS, + ACTIONS(1930), 1, + anon_sym_as, + ACTIONS(1932), 1, + anon_sym_if, + ACTIONS(1934), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, + STATE(1035), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1501), 20, - anon_sym_as, - anon_sym_if, + ACTIONS(1243), 18, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96896,7 +94014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1503), 23, + ACTIONS(1241), 23, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96920,13 +94038,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92269] = 4, - ACTIONS(1951), 1, - anon_sym_DASH_GT, + [91652] = 4, + STATE(1031), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 24, + ACTIONS(1188), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(1190), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96937,6 +94080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -96951,7 +94095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1276), 25, + [91713] = 4, + STATE(1027), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1024), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96966,7 +94116,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -96977,21 +94126,118 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [92330] = 6, - ACTIONS(1918), 1, + ACTIONS(1026), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [91774] = 22, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(912), 1, + anon_sym_is, + ACTIONS(1871), 1, + anon_sym_LPAREN, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1879), 1, + anon_sym_STAR_STAR, + ACTIONS(1881), 1, + anon_sym_QMARK_DOT, + ACTIONS(1889), 1, + anon_sym_PIPE, + ACTIONS(1891), 1, + anon_sym_AMP, + ACTIONS(1893), 1, + anon_sym_CARET, + ACTIONS(1901), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1885), 2, anon_sym_PLUS, - ACTIONS(1944), 1, + anon_sym_DASH, + ACTIONS(1887), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1895), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(888), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(910), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(880), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_and, + anon_sym_or, + ACTIONS(1124), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1122), 11, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [91871] = 4, + STATE(1005), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1322), 22, + ACTIONS(1020), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97000,6 +94246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_SLASH, anon_sym_LT, @@ -97011,7 +94258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1320), 24, + ACTIONS(1022), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97020,6 +94267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -97036,25 +94284,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92395] = 10, - ACTIONS(1887), 1, + [91932] = 5, + STATE(1028), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1936), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1374), 15, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1379), 32, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(1889), 1, anon_sym_LBRACK, - ACTIONS(1893), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_LBRACK, + [91995] = 10, + ACTIONS(1871), 1, + anon_sym_LPAREN, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1879), 1, anon_sym_STAR_STAR, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_QMARK_DOT, - ACTIONS(1899), 1, + ACTIONS(1901), 1, anon_sym_QMARK_LBRACK, - STATE(1128), 1, + STATE(1095), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1318), 20, + ACTIONS(944), 20, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, @@ -97075,7 +94381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, sym_float, - ACTIONS(1316), 23, + ACTIONS(942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97099,56 +94405,62 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [92468] = 21, - ACTIONS(1887), 1, + [92068] = 22, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(912), 1, + anon_sym_is, + ACTIONS(1871), 1, anon_sym_LPAREN, - ACTIONS(1889), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_STAR_STAR, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_QMARK_DOT, - ACTIONS(1899), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1922), 1, - anon_sym_not, - ACTIONS(1926), 1, + ACTIONS(1889), 1, anon_sym_PIPE, - ACTIONS(1928), 1, + ACTIONS(1891), 1, anon_sym_AMP, - ACTIONS(1930), 1, + ACTIONS(1893), 1, anon_sym_CARET, - ACTIONS(1936), 1, - anon_sym_is, - STATE(1083), 1, - aux_sym_comparison_operator_repeat1, - STATE(1128), 1, + ACTIONS(1901), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1897), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1924), 2, + ACTIONS(1885), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1932), 2, + ACTIONS(1887), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1920), 3, + ACTIONS(888), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1934), 4, + ACTIONS(910), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 7, + ACTIONS(880), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(882), 7, sym_string_start, anon_sym_COMMA, anon_sym_LBRACE, @@ -97156,30 +94468,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_TILDE, sym_float, - ACTIONS(1225), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(878), 11, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [92563] = 4, - STATE(1064), 1, - aux_sym_dotted_name_repeat1, + [92165] = 4, + STATE(1006), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1471), 24, + ACTIONS(1259), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97204,7 +94511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1469), 25, + ACTIONS(1261), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97230,17 +94537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92624] = 4, - STATE(1029), 1, - aux_sym_dotted_name_repeat1, + [92226] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1479), 24, + STATE(1035), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(874), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97261,7 +94568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1477), 25, + ACTIONS(876), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97287,86 +94594,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92685] = 8, - ACTIONS(1918), 1, - anon_sym_PLUS, - ACTIONS(1944), 1, - anon_sym_and, + [92287] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, + STATE(1035), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1473), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1439), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1475), 12, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - ACTIONS(1441), 16, + ACTIONS(874), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [92754] = 8, - ACTIONS(1439), 1, - anon_sym_QMARK_DOT, - ACTIONS(1918), 1, - anon_sym_PLUS, - ACTIONS(1944), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_or, - ACTIONS(1473), 18, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97375,6 +94613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -97385,7 +94625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1475), 23, + ACTIONS(876), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97393,6 +94633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -97409,19 +94651,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92823] = 6, - ACTIONS(1918), 1, - anon_sym_PLUS, - ACTIONS(1944), 1, + [92348] = 9, + ACTIONS(1265), 1, + anon_sym_DOT, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(1905), 1, anon_sym_and, + ACTIONS(1907), 1, + anon_sym_PLUS, + ACTIONS(1934), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, + STATE(1035), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1441), 22, - anon_sym_DOT, + ACTIONS(1199), 20, anon_sym_as, anon_sym_if, anon_sym_lambda, @@ -97432,7 +94679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, - anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -97443,7 +94689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1439), 24, + ACTIONS(1197), 23, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97451,7 +94697,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -97468,14 +94713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92888] = 4, + [92419] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, + STATE(1018), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1328), 23, + ACTIONS(932), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97499,7 +94744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1330), 25, + ACTIONS(934), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97525,11 +94770,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [92949] = 3, + [92480] = 4, + STATE(1031), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 24, + ACTIONS(1082), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97554,7 +94801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1621), 25, + ACTIONS(1084), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97580,44 +94827,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93007] = 3, + [92541] = 10, + ACTIONS(1871), 1, + anon_sym_LPAREN, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1879), 1, + anon_sym_STAR_STAR, + ACTIONS(1881), 1, + anon_sym_QMARK_DOT, + ACTIONS(1901), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1607), 25, + ACTIONS(938), 20, sym_string_start, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -97633,15 +94865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - [93065] = 4, - STATE(1076), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1559), 23, + ACTIONS(936), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97665,39 +94890,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1561), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [93125] = 4, - STATE(1076), 1, - aux_sym_comparison_operator_repeat1, + [92614] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 23, + STATE(1035), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1354), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -97721,7 +94921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1561), 25, + ACTIONS(1356), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97747,71 +94947,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93185] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1627), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, + [92675] = 22, + ACTIONS(896), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(912), 1, anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1629), 25, - sym_string_start, - anon_sym_COMMA, + ACTIONS(1871), 1, anon_sym_LPAREN, + ACTIONS(1873), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1879), 1, anon_sym_STAR_STAR, + ACTIONS(1881), 1, anon_sym_QMARK_DOT, + ACTIONS(1889), 1, + anon_sym_PIPE, + ACTIONS(1891), 1, + anon_sym_AMP, + ACTIONS(1893), 1, + anon_sym_CARET, + ACTIONS(1901), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1885), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1887), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1895), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(888), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(910), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(880), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1154), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - [93243] = 4, - STATE(1076), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1152), 11, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [92772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 23, + ACTIONS(1535), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -97832,7 +95051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1561), 25, + ACTIONS(1533), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97858,45 +95077,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93303] = 8, - ACTIONS(1922), 1, - anon_sym_not, - ACTIONS(1936), 1, - anon_sym_is, - STATE(1074), 1, - aux_sym_comparison_operator_repeat1, + [92830] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1934), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1225), 18, + ACTIONS(1531), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1223), 21, + ACTIONS(1529), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97916,47 +95126,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93371] = 8, - ACTIONS(1956), 1, - anon_sym_not, - ACTIONS(1962), 1, - anon_sym_is, - STATE(1076), 1, + [92888] = 4, + STATE(1056), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1953), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1959), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1567), 18, + ACTIONS(1563), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1569), 21, + ACTIONS(1561), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -97976,13 +95182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93439] = 3, + [92948] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 24, + ACTIONS(1527), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98007,7 +95217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1633), 25, + ACTIONS(1525), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98033,11 +95243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93497] = 3, + [93006] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 24, + ACTIONS(1539), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98062,7 +95272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1617), 25, + ACTIONS(1537), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98088,11 +95298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93555] = 3, + [93064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 24, + ACTIONS(1543), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98117,7 +95327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1589), 25, + ACTIONS(1541), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98143,11 +95353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93613] = 3, + [93122] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 24, + ACTIONS(1557), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98172,7 +95382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1625), 25, + ACTIONS(1559), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98198,15 +95408,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93671] = 3, + [93180] = 4, + STATE(1056), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 24, + ACTIONS(1563), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -98227,7 +95438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1593), 25, + ACTIONS(1561), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98253,15 +95464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93729] = 3, + [93240] = 4, + STATE(1056), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 24, + ACTIONS(1563), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -98282,7 +95494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1611), 25, + ACTIONS(1561), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98308,16 +95520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93787] = 4, - STATE(1076), 1, - aux_sym_comparison_operator_repeat1, + [93300] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 23, + ACTIONS(1477), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -98338,7 +95549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1561), 25, + ACTIONS(1479), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98364,11 +95575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93847] = 3, + [93358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 24, + ACTIONS(1499), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98393,7 +95604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1597), 25, + ACTIONS(1497), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98419,17 +95630,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [93905] = 3, + [93416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1362), 15, + ACTIONS(1503), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_EQ, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(1501), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -98437,52 +95678,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1367), 34, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_QMARK_LBRACK, - [93963] = 3, + sym_float, + [93474] = 4, + STATE(1056), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1362), 24, + ACTIONS(1563), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -98503,7 +95715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1367), 25, + ACTIONS(1561), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98529,11 +95741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94021] = 3, + [93534] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 24, + ACTIONS(1374), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98558,7 +95770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1601), 25, + ACTIONS(1379), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98584,37 +95796,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94079] = 4, - ACTIONS(1901), 1, - anon_sym_EQ, + [93592] = 8, + ACTIONS(1883), 1, + anon_sym_not, + ACTIONS(1899), 1, + anon_sym_is, + STATE(1048), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 23, + ACTIONS(1875), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1897), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(880), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1342), 25, + ACTIONS(948), 21, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98634,32 +95854,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94139] = 6, - ACTIONS(1965), 1, - anon_sym_in, - ACTIONS(1967), 1, - anon_sym_not, - ACTIONS(1969), 1, - anon_sym_PLUS, + [93660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 21, + ACTIONS(1519), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -98672,7 +95885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1681), 24, + ACTIONS(1517), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98681,6 +95894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -98697,94 +95911,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94202] = 8, - ACTIONS(1292), 1, + [93718] = 8, + ACTIONS(1942), 1, anon_sym_not, - ACTIONS(1308), 1, + ACTIONS(1948), 1, anon_sym_is, - STATE(1108), 1, + STATE(1056), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 3, + ACTIONS(1939), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 4, + ACTIONS(1945), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 13, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1225), 25, - anon_sym_import, + ACTIONS(1481), 18, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [94269] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1797), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, anon_sym_STAR, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1795), 25, + ACTIONS(1483), 21, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98804,32 +95969,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94326] = 6, - ACTIONS(1689), 1, - anon_sym_in, - ACTIONS(1691), 1, - anon_sym_not, - ACTIONS(1693), 1, - anon_sym_PLUS, + [93786] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 21, + ACTIONS(1523), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_EQ, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -98842,7 +96000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1681), 24, + ACTIONS(1521), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98851,6 +96009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -98867,11 +96026,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94389] = 3, + [93844] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1374), 15, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1379), 34, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_LBRACK, + [93902] = 4, + ACTIONS(1928), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 23, + ACTIONS(1362), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98895,7 +96111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1819), 25, + ACTIONS(1364), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98921,11 +96137,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94446] = 3, + [93962] = 7, + ACTIONS(956), 1, + anon_sym_is, + STATE(393), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 23, + ACTIONS(950), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(954), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1561), 13, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1563), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [94027] = 7, + ACTIONS(1184), 1, + anon_sym_is, + STATE(397), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1160), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1182), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1561), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1563), 26, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [94092] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1819), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -98949,7 +96281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1823), 25, + ACTIONS(1817), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -98975,24 +96307,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94503] = 7, - ACTIONS(1308), 1, + [94149] = 8, + ACTIONS(952), 1, + anon_sym_not, + ACTIONS(956), 1, anon_sym_is, - STATE(590), 1, + STATE(1060), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 3, + ACTIONS(950), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 4, + ACTIONS(954), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 13, + ACTIONS(948), 13, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -99006,7 +96340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1559), 26, + ACTIONS(880), 25, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -99024,7 +96358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protocol, anon_sym_rule, anon_sym_check, - anon_sym_not, anon_sym_and, anon_sym_or, sym_integer, @@ -99033,11 +96366,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [94568] = 3, + [94216] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 23, + ACTIONS(1713), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99061,7 +96394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1835), 25, + ACTIONS(1711), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99087,11 +96420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94625] = 3, + [94273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 23, + ACTIONS(1717), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99115,7 +96448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1839), 25, + ACTIONS(1715), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99141,11 +96474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94682] = 3, + [94330] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 23, + ACTIONS(1823), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99169,7 +96502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1843), 25, + ACTIONS(1821), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99195,11 +96528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94739] = 3, + [94387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 23, + ACTIONS(1721), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99223,7 +96556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1867), 25, + ACTIONS(1719), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99249,80 +96582,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94796] = 7, - ACTIONS(1308), 1, - anon_sym_is, - STATE(590), 1, - aux_sym_comparison_operator_repeat1, + [94444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1306), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 13, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1559), 26, - anon_sym_import, + ACTIONS(1827), 23, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [94861] = 3, + ACTIONS(1825), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [94501] = 5, + ACTIONS(1841), 1, + anon_sym_in, + ACTIONS(1843), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 23, + ACTIONS(1681), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -99335,7 +96666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1865), 25, + ACTIONS(1683), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99361,11 +96692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94918] = 3, + [94562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 23, + ACTIONS(1725), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99389,7 +96720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1861), 25, + ACTIONS(1723), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99415,11 +96746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [94975] = 3, + [94619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 23, + ACTIONS(1831), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99443,7 +96774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1857), 25, + ACTIONS(1829), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99469,22 +96800,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95032] = 3, + [94676] = 5, + ACTIONS(1951), 1, + anon_sym_in, + ACTIONS(1953), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 23, + ACTIONS(1681), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -99497,7 +96830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1853), 25, + ACTIONS(1683), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99523,11 +96856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95089] = 3, + [94737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 23, + ACTIONS(1729), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99551,7 +96884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1849), 25, + ACTIONS(1727), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99577,11 +96910,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95146] = 3, + [94794] = 8, + ACTIONS(1168), 1, + anon_sym_not, + ACTIONS(1184), 1, + anon_sym_is, + STATE(1083), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 23, + ACTIONS(1160), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1182), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(880), 25, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [94861] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1733), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99605,7 +96997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1833), 25, + ACTIONS(1731), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99631,11 +97023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95203] = 3, + [94918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 23, + ACTIONS(1737), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99659,7 +97051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1829), 25, + ACTIONS(1735), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99685,69 +97077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95260] = 7, - ACTIONS(1308), 1, - anon_sym_is, - STATE(590), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1284), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1306), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 13, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1559), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [95325] = 3, + [94975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 23, + ACTIONS(1835), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99771,7 +97105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1705), 25, + ACTIONS(1833), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99797,11 +97131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95382] = 3, + [95032] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 23, + ACTIONS(1741), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99825,7 +97159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1223), 25, + ACTIONS(1739), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99851,11 +97185,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95439] = 3, + [95089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 23, + ACTIONS(1813), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99879,7 +97213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1817), 25, + ACTIONS(1815), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99905,11 +97239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95496] = 3, + [95146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 23, + ACTIONS(1759), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99933,7 +97267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1813), 25, + ACTIONS(1761), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -99959,11 +97293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95553] = 3, + [95203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 23, + ACTIONS(1745), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -99987,7 +97321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1809), 25, + ACTIONS(1743), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100013,26 +97347,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95610] = 7, - ACTIONS(1308), 1, + [95260] = 7, + ACTIONS(1184), 1, anon_sym_is, - STATE(590), 1, + STATE(397), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 3, + ACTIONS(1160), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1306), 4, + ACTIONS(1182), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, ACTIONS(1561), 13, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -100044,7 +97378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1559), 26, + ACTIONS(1563), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -100071,119 +97405,69 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [95675] = 3, + [95325] = 7, + ACTIONS(1184), 1, + anon_sym_is, + STATE(397), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + ACTIONS(1160), 3, anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1705), 25, + ACTIONS(1182), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1561), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, sym_float, - [95732] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1803), 23, + ACTIONS(1563), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1805), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [95789] = 3, + [95390] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 23, + ACTIONS(1699), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100207,7 +97491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1801), 25, + ACTIONS(1701), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100233,11 +97517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95846] = 3, + [95447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 23, + ACTIONS(1695), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100261,7 +97545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1681), 25, + ACTIONS(1697), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100287,19 +97571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [95903] = 7, - ACTIONS(1255), 1, + [95504] = 7, + ACTIONS(1184), 1, anon_sym_is, - STATE(733), 1, + STATE(397), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1231), 3, + ACTIONS(1160), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 4, + ACTIONS(1182), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -100318,7 +97602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1559), 26, + ACTIONS(1563), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -100345,11 +97629,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [95968] = 3, + [95569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 23, + ACTIONS(1749), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100373,7 +97657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1783), 25, + ACTIONS(1747), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100399,65 +97683,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96025] = 3, + [95626] = 7, + ACTIONS(956), 1, + anon_sym_is, + STATE(393), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 23, + ACTIONS(950), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(954), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1561), 13, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1563), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, + anon_sym_else, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_STAR, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - ACTIONS(1789), 25, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [96082] = 3, + [95691] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 23, + ACTIONS(1753), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100481,7 +97769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1781), 25, + ACTIONS(1751), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100507,11 +97795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96139] = 3, + [95748] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 23, + ACTIONS(1579), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100535,7 +97823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1777), 25, + ACTIONS(1581), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100561,11 +97849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96196] = 3, + [95805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 23, + ACTIONS(1599), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100589,7 +97877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1773), 25, + ACTIONS(1601), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100615,11 +97903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96253] = 3, + [95862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 23, + ACTIONS(1603), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100643,7 +97931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1773), 25, + ACTIONS(1605), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100669,69 +97957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96310] = 7, - ACTIONS(1255), 1, - anon_sym_is, - STATE(733), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1231), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1253), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1559), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [96375] = 3, + [95919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 23, + ACTIONS(1607), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100755,7 +97985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1769), 25, + ACTIONS(1609), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100781,11 +98011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96432] = 3, + [95976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 23, + ACTIONS(1611), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100809,7 +98039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1763), 25, + ACTIONS(1613), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -100835,26 +98065,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96489] = 7, - ACTIONS(1255), 1, + [96033] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1615), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(1617), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [96090] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1753), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(1751), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [96147] = 7, + ACTIONS(956), 1, anon_sym_is, - STATE(733), 1, + STATE(393), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1231), 3, + ACTIONS(950), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 4, + ACTIONS(954), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, ACTIONS(1561), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -100866,7 +98204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1559), 26, + ACTIONS(1563), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -100893,26 +98231,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [96554] = 7, - ACTIONS(1255), 1, + [96212] = 7, + ACTIONS(956), 1, anon_sym_is, - STATE(733), 1, + STATE(393), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1231), 3, + ACTIONS(950), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 4, + ACTIONS(954), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, ACTIONS(1561), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -100924,7 +98262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1559), 26, + ACTIONS(1563), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -100951,11 +98289,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [96619] = 3, + [96277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 23, + ACTIONS(1757), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100979,7 +98317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1761), 25, + ACTIONS(1755), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101005,11 +98343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96676] = 3, + [96334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 23, + ACTIONS(1663), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101033,7 +98371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1677), 25, + ACTIONS(1665), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101059,11 +98397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96733] = 3, + [96391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 23, + ACTIONS(1811), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101087,7 +98425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1677), 25, + ACTIONS(1809), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101113,11 +98451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96790] = 3, + [96448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 23, + ACTIONS(1765), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101141,7 +98479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1701), 25, + ACTIONS(1763), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101167,11 +98505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96847] = 3, + [96505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 23, + ACTIONS(1807), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101195,7 +98533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1757), 25, + ACTIONS(1805), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101221,11 +98559,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96904] = 3, + [96562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 23, + ACTIONS(1769), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101249,7 +98587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1753), 25, + ACTIONS(1767), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101275,11 +98613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [96961] = 3, + [96619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 23, + ACTIONS(1803), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101303,7 +98641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1749), 25, + ACTIONS(1801), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101329,11 +98667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97018] = 3, + [96676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 23, + ACTIONS(1769), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101357,7 +98695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1745), 25, + ACTIONS(1767), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101383,11 +98721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97075] = 3, + [96733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 23, + ACTIONS(1799), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101411,7 +98749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1741), 25, + ACTIONS(1797), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101437,11 +98775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97132] = 3, + [96790] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 23, + ACTIONS(1795), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101465,7 +98803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1737), 25, + ACTIONS(1793), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101491,11 +98829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97189] = 3, + [96847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 23, + ACTIONS(1669), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101519,7 +98857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1733), 25, + ACTIONS(1671), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101545,11 +98883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97246] = 3, + [96904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 23, + ACTIONS(1669), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101573,7 +98911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1729), 25, + ACTIONS(1671), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101599,26 +98937,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97303] = 6, - ACTIONS(1965), 1, - anon_sym_in, - ACTIONS(1971), 1, - anon_sym_not, - ACTIONS(1973), 1, - anon_sym_PLUS, + [96961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 21, + ACTIONS(1673), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -101631,7 +98965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1681), 24, + ACTIONS(1675), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101640,6 +98974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -101656,70 +98991,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97366] = 8, - ACTIONS(1239), 1, - anon_sym_not, - ACTIONS(1255), 1, - anon_sym_is, - STATE(1126), 1, - aux_sym_comparison_operator_repeat1, + [97018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1231), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1253), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1225), 25, - anon_sym_import, + ACTIONS(1677), 23, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_STAR, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [97433] = 3, + ACTIONS(1679), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [97075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 23, + ACTIONS(1791), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101743,7 +99073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1725), 25, + ACTIONS(1789), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101769,22 +99099,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97490] = 3, + [97132] = 5, + ACTIONS(1951), 1, + anon_sym_in, + ACTIONS(1955), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 23, + ACTIONS(1681), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, - anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_STAR, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -101797,7 +99129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1721), 25, + ACTIONS(1683), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101823,11 +99155,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97547] = 3, + [97193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 23, + ACTIONS(1689), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101851,7 +99183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1791), 25, + ACTIONS(1691), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101877,11 +99209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97604] = 3, + [97250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 23, + ACTIONS(1773), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101905,7 +99237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1675), 25, + ACTIONS(1771), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101931,11 +99263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97661] = 3, + [97307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 23, + ACTIONS(1681), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101959,7 +99291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1687), 25, + ACTIONS(1683), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -101985,31 +99317,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97718] = 5, + [97364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 6, + ACTIONS(1787), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, anon_sym_in, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_STAR, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, anon_sym_is, - ACTIONS(1681), 12, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - ACTIONS(1687), 13, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(1785), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -102021,40 +99357,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1685), 17, + [97421] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1777), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, + anon_sym_in, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [97779] = 5, + ACTIONS(1775), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_TILDE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_LBRACK, + sym_float, + [97478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 2, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - ACTIONS(1685), 5, + ACTIONS(880), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1683), 18, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -102063,6 +99441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_STAR, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -102073,7 +99453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1681), 23, + ACTIONS(948), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -102081,6 +99461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -102097,11 +99479,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97840] = 3, + [97535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 23, + ACTIONS(1681), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102125,7 +99507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1687), 25, + ACTIONS(1683), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -102151,11 +99533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97897] = 3, + [97592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 23, + ACTIONS(1783), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102179,7 +99561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1709), 25, + ACTIONS(1781), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -102205,28 +99587,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [97954] = 8, - ACTIONS(1975), 1, + [97649] = 8, + ACTIONS(1957), 1, anon_sym_LBRACE, - ACTIONS(1977), 1, + ACTIONS(1959), 1, sym_isMutableFlag, - STATE(1416), 1, + STATE(1259), 1, + aux_sym_comparison_operator_repeat1, + STATE(1340), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, - STATE(2237), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + ACTIONS(690), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 31, + ACTIONS(692), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102258,28 +99640,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98015] = 8, - ACTIONS(1975), 1, + [97710] = 8, + ACTIONS(1957), 1, anon_sym_LBRACE, - ACTIONS(1977), 1, + ACTIONS(1959), 1, sym_isMutableFlag, - STATE(1416), 1, + STATE(1340), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, - STATE(2109), 1, + STATE(2186), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + ACTIONS(690), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 31, + ACTIONS(692), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102311,28 +99693,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98076] = 8, - ACTIONS(1975), 1, + [97771] = 8, + ACTIONS(1957), 1, anon_sym_LBRACE, - ACTIONS(1977), 1, + ACTIONS(1959), 1, sym_isMutableFlag, - STATE(1297), 1, - aux_sym_comparison_operator_repeat1, - STATE(1416), 1, + STATE(1340), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, + STATE(2098), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + ACTIONS(690), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 31, + ACTIONS(692), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102364,24 +99746,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98137] = 9, - ACTIONS(876), 1, - anon_sym_DOT, - ACTIONS(1487), 1, - anon_sym_QMARK_DOT, - ACTIONS(1979), 1, - anon_sym_and, - ACTIONS(1981), 1, - anon_sym_or, - ACTIONS(1983), 1, + [97832] = 5, + ACTIONS(1961), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, + STATE(195), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1503), 11, + ACTIONS(1070), 12, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -102389,12 +99763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1501), 23, + ACTIONS(1068), 26, anon_sym_import, + anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -102411,48 +99787,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [98199] = 11, - ACTIONS(876), 1, - anon_sym_DOT, - ACTIONS(1487), 1, - anon_sym_QMARK_DOT, - ACTIONS(1979), 1, - anon_sym_and, - ACTIONS(1981), 1, - anon_sym_or, - ACTIONS(1983), 1, + [97886] = 5, + ACTIONS(1963), 1, anon_sym_PLUS, - ACTIONS(1985), 1, - anon_sym_as, - ACTIONS(1987), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, + STATE(349), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1388), 11, - sym__dedent, + ACTIONS(1074), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1390), 21, + ACTIONS(1072), 26, anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_assert, + anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -102466,40 +99836,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [98265] = 5, - ACTIONS(1983), 1, + [97940] = 11, + ACTIONS(1201), 1, + anon_sym_DOT, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1963), 1, anon_sym_PLUS, + ACTIONS(1965), 1, + anon_sym_as, + ACTIONS(1967), 1, + anon_sym_if, + ACTIONS(1969), 1, + anon_sym_and, + ACTIONS(1971), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, + STATE(349), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1465), 12, - sym__dedent, + ACTIONS(1241), 11, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1467), 26, + ACTIONS(1243), 21, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -102513,39 +99893,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [98319] = 5, - ACTIONS(1983), 1, + [98006] = 9, + ACTIONS(1201), 1, + anon_sym_DOT, + ACTIONS(1203), 1, + anon_sym_QMARK_DOT, + ACTIONS(1963), 1, anon_sym_PLUS, + ACTIONS(1969), 1, + anon_sym_and, + ACTIONS(1971), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, + STATE(349), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1445), 12, - sym__dedent, + ACTIONS(1197), 11, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1447), 26, + ACTIONS(1199), 23, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -102562,26 +99946,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [98373] = 5, - ACTIONS(1983), 1, + [98068] = 5, + ACTIONS(1963), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, + STATE(349), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1439), 12, - sym__dedent, + ACTIONS(916), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -102592,7 +99974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1441), 26, + ACTIONS(918), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -102619,18 +100001,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [98427] = 5, - ACTIONS(1983), 1, + [98122] = 5, + ACTIONS(1963), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, + STATE(349), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1430), 12, - sym__dedent, + ACTIONS(1070), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -102641,7 +100023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1432), 26, + ACTIONS(1068), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -102668,31 +100050,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [98481] = 5, - ACTIONS(1989), 1, + [98176] = 9, + ACTIONS(1044), 1, + anon_sym_DOT, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1961), 1, anon_sym_PLUS, + ACTIONS(1973), 1, + anon_sym_and, + ACTIONS(1975), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(195), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1430), 12, + ACTIONS(1197), 11, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1432), 26, + ACTIONS(1199), 23, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -102709,34 +100097,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [98535] = 9, - ACTIONS(900), 1, + [98238] = 11, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(1396), 1, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - ACTIONS(1989), 1, + ACTIONS(1961), 1, anon_sym_PLUS, - ACTIONS(1991), 1, + ACTIONS(1973), 1, anon_sym_and, - ACTIONS(1993), 1, + ACTIONS(1975), 1, anon_sym_or, + ACTIONS(1977), 1, + anon_sym_as, + ACTIONS(1979), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(195), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1503), 11, + ACTIONS(1241), 11, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -102746,11 +100136,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1501), 23, + ACTIONS(1243), 21, anon_sym_import, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_all, @@ -102770,18 +100158,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [98597] = 5, - ACTIONS(1989), 1, + [98304] = 5, + ACTIONS(1961), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(195), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1439), 12, + ACTIONS(1074), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -102792,7 +100180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1441), 26, + ACTIONS(1072), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -102819,18 +100207,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [98651] = 5, - ACTIONS(1989), 1, + [98358] = 5, + ACTIONS(1961), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(195), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1445), 12, + ACTIONS(916), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -102841,7 +100229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1447), 26, + ACTIONS(918), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -102868,35 +100256,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [98705] = 5, - ACTIONS(1989), 1, + [98412] = 11, + ACTIONS(1044), 1, + anon_sym_DOT, + ACTIONS(1289), 1, + anon_sym_QMARK_DOT, + ACTIONS(1961), 1, anon_sym_PLUS, + ACTIONS(1973), 1, + anon_sym_and, + ACTIONS(1975), 1, + anon_sym_or, + ACTIONS(1977), 1, + anon_sym_as, + ACTIONS(1983), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(195), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1465), 12, + ACTIONS(1985), 10, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_AT, - anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1467), 26, + ACTIONS(1981), 21, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -102909,39 +100304,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rule, anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [98759] = 11, - ACTIONS(900), 1, + [98477] = 11, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(1396), 1, + ACTIONS(1203), 1, anon_sym_QMARK_DOT, - ACTIONS(1989), 1, + ACTIONS(1963), 1, anon_sym_PLUS, - ACTIONS(1991), 1, + ACTIONS(1965), 1, + anon_sym_as, + ACTIONS(1969), 1, anon_sym_and, - ACTIONS(1993), 1, + ACTIONS(1971), 1, anon_sym_or, - ACTIONS(1995), 1, - anon_sym_as, - ACTIONS(1997), 1, - anon_sym_if, + ACTIONS(1991), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(349), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1388), 11, + ACTIONS(1987), 10, sym_string_start, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -102950,10 +100342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1390), 21, + ACTIONS(1989), 21, anon_sym_import, anon_sym_assert, - anon_sym_else, + anon_sym_if, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -102972,75 +100364,28 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [98825] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1272), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1270), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [98876] = 11, - ACTIONS(900), 1, + [98542] = 11, + ACTIONS(1201), 1, anon_sym_DOT, - ACTIONS(1396), 1, + ACTIONS(1203), 1, anon_sym_QMARK_DOT, - ACTIONS(1989), 1, + ACTIONS(1963), 1, anon_sym_PLUS, - ACTIONS(1991), 1, + ACTIONS(1965), 1, + anon_sym_as, + ACTIONS(1969), 1, anon_sym_and, - ACTIONS(1993), 1, + ACTIONS(1971), 1, anon_sym_or, - ACTIONS(1995), 1, - anon_sym_as, - ACTIONS(2003), 1, - anon_sym_else, + ACTIONS(1993), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(348), 2, + STATE(349), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1999), 10, + ACTIONS(1985), 10, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -103051,7 +100396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2001), 21, + ACTIONS(1981), 21, anon_sym_import, anon_sym_assert, anon_sym_if, @@ -103073,65 +100418,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [98941] = 8, - ACTIONS(2005), 1, - anon_sym_LBRACE, - ACTIONS(2007), 1, - sym_isMutableFlag, - STATE(1298), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2209), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [99000] = 4, + [98607] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1147), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1334), 7, + ACTIONS(932), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -103139,7 +100433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1332), 31, + ACTIONS(934), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103171,17 +100465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99051] = 5, + [98658] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2009), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1173), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1372), 7, + ACTIONS(1354), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -103189,7 +100480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1377), 29, + ACTIONS(1356), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -103201,6 +100493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103219,28 +100512,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99104] = 11, - ACTIONS(876), 1, + [98709] = 11, + ACTIONS(1044), 1, anon_sym_DOT, - ACTIONS(1487), 1, + ACTIONS(1289), 1, anon_sym_QMARK_DOT, - ACTIONS(1979), 1, + ACTIONS(1961), 1, + anon_sym_PLUS, + ACTIONS(1973), 1, anon_sym_and, - ACTIONS(1981), 1, + ACTIONS(1975), 1, anon_sym_or, - ACTIONS(1983), 1, - anon_sym_PLUS, - ACTIONS(1985), 1, + ACTIONS(1977), 1, anon_sym_as, - ACTIONS(2003), 1, + ACTIONS(1991), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(323), 2, + STATE(195), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1999), 10, + ACTIONS(1987), 10, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -103251,61 +100544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2001), 21, - anon_sym_import, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [99169] = 11, - ACTIONS(900), 1, - anon_sym_DOT, - ACTIONS(1396), 1, - anon_sym_QMARK_DOT, - ACTIONS(1989), 1, - anon_sym_PLUS, - ACTIONS(1991), 1, - anon_sym_and, - ACTIONS(1993), 1, - anon_sym_or, - ACTIONS(1995), 1, - anon_sym_as, - ACTIONS(2016), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(348), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2012), 10, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2014), 21, + ACTIONS(1989), 21, anon_sym_import, anon_sym_assert, anon_sym_if, @@ -103327,14 +100566,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [99234] = 4, + [98774] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1219), 7, + ACTIONS(1327), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -103342,7 +100581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1221), 31, + ACTIONS(1329), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103374,28 +100613,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99285] = 8, - ACTIONS(2005), 1, + [98825] = 8, + ACTIONS(1995), 1, anon_sym_LBRACE, - ACTIONS(2007), 1, + ACTIONS(1997), 1, sym_isMutableFlag, - STATE(1298), 1, + STATE(1236), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, - STATE(2237), 1, + STATE(2186), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + ACTIONS(690), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 29, + ACTIONS(692), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103425,14 +100664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99344] = 4, + [98884] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1219), 7, + ACTIONS(874), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -103440,7 +100679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1221), 31, + ACTIONS(876), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103472,35 +100711,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99395] = 8, - ACTIONS(2005), 1, - anon_sym_LBRACE, - ACTIONS(2007), 1, - sym_isMutableFlag, - STATE(1298), 1, - sym_dict_expr, - STATE(1479), 1, - aux_sym_comparison_operator_repeat1, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, + [98935] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(874), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 29, + ACTIONS(876), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -103509,7 +100745,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103523,86 +100758,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99454] = 11, - ACTIONS(876), 1, - anon_sym_DOT, - ACTIONS(1487), 1, - anon_sym_QMARK_DOT, - ACTIONS(1979), 1, - anon_sym_and, - ACTIONS(1981), 1, - anon_sym_or, - ACTIONS(1983), 1, - anon_sym_PLUS, - ACTIONS(1985), 1, - anon_sym_as, - ACTIONS(2018), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(323), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2012), 10, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, + [98986] = 8, + ACTIONS(1995), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2014), 21, - anon_sym_import, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [99519] = 4, + ACTIONS(1997), 1, + sym_isMutableFlag, + STATE(1236), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2153), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1173), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1328), 7, + ACTIONS(690), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1330), 31, + ACTIONS(692), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -103611,6 +100795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103624,206 +100809,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99570] = 7, - ACTIONS(1936), 1, - anon_sym_is, - STATE(1076), 1, - aux_sym_comparison_operator_repeat1, + [99045] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1934), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 13, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1559), 17, + ACTIONS(1999), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [99626] = 22, - ACTIONS(1225), 1, - anon_sym_EQ, - ACTIONS(2020), 1, - anon_sym_LPAREN, - ACTIONS(2022), 1, - anon_sym_LBRACK, - ACTIONS(2028), 1, - anon_sym_STAR_STAR, - ACTIONS(2030), 1, anon_sym_QMARK_DOT, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2034), 1, + STATE(1147), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - ACTIONS(2036), 1, anon_sym_DASH, - ACTIONS(2040), 1, - anon_sym_PIPE, - ACTIONS(2042), 1, - anon_sym_AMP, - ACTIONS(2044), 1, - anon_sym_CARET, - ACTIONS(2050), 1, - anon_sym_is, - ACTIONS(2052), 1, - anon_sym_QMARK_LBRACK, - STATE(1384), 1, - sym_argument_list, - STATE(2194), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2026), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2038), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2046), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2048), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 11, - anon_sym_DOT, + ACTIONS(1438), 29, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [99712] = 8, - ACTIONS(2058), 1, - anon_sym_elif, - ACTIONS(2060), 1, - anon_sym_else, - STATE(1262), 1, - aux_sym_if_statement_repeat1, - STATE(1480), 1, - sym_elif_clause, - STATE(1726), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2054), 12, - sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2056), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [99770] = 8, - ACTIONS(2062), 1, - anon_sym_LBRACE, - ACTIONS(2064), 1, - sym_isMutableFlag, - STATE(1775), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2214), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103837,236 +100857,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99828] = 7, - ACTIONS(1936), 1, - anon_sym_is, - STATE(1076), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1920), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1934), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 13, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1559), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [99884] = 8, - ACTIONS(2068), 1, - anon_sym_elif, - ACTIONS(2070), 1, - anon_sym_else, - STATE(1223), 1, - aux_sym_if_statement_repeat1, - STATE(1472), 1, - sym_elif_clause, - STATE(1665), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2072), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2066), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [99942] = 7, - ACTIONS(1936), 1, - anon_sym_is, - STATE(1076), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1920), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1934), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 13, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + [99098] = 8, + ACTIONS(1995), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1559), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [99998] = 7, - ACTIONS(1936), 1, - anon_sym_is, - STATE(1076), 1, + ACTIONS(1997), 1, + sym_isMutableFlag, + STATE(1236), 1, + sym_dict_expr, + STATE(1426), 1, aux_sym_comparison_operator_repeat1, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1934), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 13, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1559), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [100054] = 5, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1467), 5, + ACTIONS(690), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 31, + ACTIONS(692), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -104081,22 +100908,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100106] = 5, - ACTIONS(2074), 1, + [99157] = 5, + ACTIONS(2002), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1447), 5, + ACTIONS(1072), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 31, + ACTIONS(1074), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104128,72 +100955,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100158] = 5, - ACTIONS(2074), 1, + [99209] = 22, + ACTIONS(880), 1, + anon_sym_EQ, + ACTIONS(2004), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_LBRACK, + ACTIONS(2012), 1, + anon_sym_STAR_STAR, + ACTIONS(2014), 1, + anon_sym_QMARK_DOT, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2018), 1, anon_sym_PLUS, + ACTIONS(2020), 1, + anon_sym_DASH, + ACTIONS(2024), 1, + anon_sym_PIPE, + ACTIONS(2026), 1, + anon_sym_AMP, + ACTIONS(2028), 1, + anon_sym_CARET, + ACTIONS(2034), 1, + anon_sym_is, + ACTIONS(2036), 1, + anon_sym_QMARK_LBRACK, + STATE(1267), 1, + aux_sym_comparison_operator_repeat1, + STATE(1292), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 5, - anon_sym_EQ, + ACTIONS(2010), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2022), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2030), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 31, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [100210] = 5, - ACTIONS(2074), 1, + [99295] = 7, + ACTIONS(2002), 1, anon_sym_PLUS, + ACTIONS(2038), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1432), 5, + ACTIONS(916), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(924), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1430), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(926), 25, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, @@ -104203,10 +101052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, @@ -104222,165 +101068,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100262] = 23, - ACTIONS(1348), 1, - anon_sym_EQ, - ACTIONS(2020), 1, - anon_sym_LPAREN, - ACTIONS(2022), 1, - anon_sym_LBRACK, - ACTIONS(2028), 1, - anon_sym_STAR_STAR, - ACTIONS(2030), 1, - anon_sym_QMARK_DOT, - ACTIONS(2034), 1, - anon_sym_PLUS, - ACTIONS(2036), 1, - anon_sym_DASH, - ACTIONS(2040), 1, - anon_sym_PIPE, - ACTIONS(2042), 1, - anon_sym_AMP, - ACTIONS(2044), 1, - anon_sym_CARET, - ACTIONS(2052), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - STATE(1384), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [99351] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2026), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2038), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2046), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1346), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [100350] = 23, - ACTIONS(1426), 1, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1354), 6, anon_sym_EQ, - ACTIONS(2020), 1, - anon_sym_LPAREN, - ACTIONS(2022), 1, - anon_sym_LBRACK, - ACTIONS(2028), 1, - anon_sym_STAR_STAR, - ACTIONS(2030), 1, - anon_sym_QMARK_DOT, - ACTIONS(2034), 1, + anon_sym_STAR, anon_sym_PLUS, - ACTIONS(2036), 1, - anon_sym_DASH, - ACTIONS(2040), 1, - anon_sym_PIPE, - ACTIONS(2042), 1, - anon_sym_AMP, - ACTIONS(2044), 1, - anon_sym_CARET, - ACTIONS(2052), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - STATE(1384), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1350), 2, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2026), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2038), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2046), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1223), 5, + ACTIONS(1356), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1424), 6, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [100438] = 9, - ACTIONS(2062), 1, - anon_sym_LBRACE, - ACTIONS(2064), 1, - sym_isMutableFlag, - ACTIONS(2080), 1, - anon_sym_COLON, - STATE(1775), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2214), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -104388,7 +101099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -104403,23 +101114,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100498] = 8, - ACTIONS(2058), 1, + [99401] = 8, + ACTIONS(2042), 1, anon_sym_elif, - ACTIONS(2060), 1, + ACTIONS(2044), 1, anon_sym_else, - STATE(1217), 1, + STATE(1251), 1, aux_sym_if_statement_repeat1, - STATE(1480), 1, + STATE(1388), 1, sym_elif_clause, - STATE(1731), 1, + STATE(1631), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 12, + ACTIONS(2046), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -104430,7 +101141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2066), 22, + ACTIONS(2040), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -104451,91 +101162,45 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_true, sym_false, - sym_none, - sym_undefined, - [100556] = 7, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(2082), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1439), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1473), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1475), 25, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [100612] = 6, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(2082), 1, - anon_sym_and, + sym_none, + sym_undefined, + [99459] = 9, + ACTIONS(2048), 1, + anon_sym_COLON, + ACTIONS(2050), 1, + anon_sym_LBRACE, + ACTIONS(2052), 1, + sym_isMutableFlag, + STATE(1727), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2158), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 5, - anon_sym_EQ, + ACTIONS(690), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 30, + ACTIONS(692), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -104550,21 +101215,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100666] = 4, + [99519] = 4, + STATE(1028), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1334), 6, + ACTIONS(1020), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1332), 31, + ACTIONS(1022), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104573,16 +101238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -104596,42 +101261,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100716] = 8, - ACTIONS(2062), 1, + [99569] = 8, + ACTIONS(1957), 1, anon_sym_LBRACE, - ACTIONS(2064), 1, + ACTIONS(1959), 1, sym_isMutableFlag, - STATE(1581), 1, - aux_sym_comparison_operator_repeat1, - STATE(1775), 1, + STATE(1340), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, + STATE(2098), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(690), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 30, + ACTIONS(692), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -104646,144 +101311,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100774] = 6, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(2082), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1322), 5, + [99627] = 23, + ACTIONS(1122), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1320), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2004), 1, anon_sym_LPAREN, + ACTIONS(2006), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(2012), 1, anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(2014), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_or, - anon_sym_PLUS_EQ, + ACTIONS(2018), 1, + anon_sym_PLUS, + ACTIONS(2020), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2024), 1, anon_sym_PIPE, + ACTIONS(2026), 1, anon_sym_AMP, + ACTIONS(2028), 1, anon_sym_CARET, + ACTIONS(2036), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + STATE(1292), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(888), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2010), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2022), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2030), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(910), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [100828] = 23, - ACTIONS(1410), 1, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1124), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_PLUS_EQ, + [99715] = 23, + ACTIONS(1152), 1, anon_sym_EQ, - ACTIONS(2020), 1, + ACTIONS(2004), 1, anon_sym_LPAREN, - ACTIONS(2022), 1, + ACTIONS(2006), 1, anon_sym_LBRACK, - ACTIONS(2028), 1, + ACTIONS(2012), 1, anon_sym_STAR_STAR, - ACTIONS(2030), 1, + ACTIONS(2014), 1, anon_sym_QMARK_DOT, - ACTIONS(2034), 1, + ACTIONS(2018), 1, anon_sym_PLUS, - ACTIONS(2036), 1, + ACTIONS(2020), 1, anon_sym_DASH, - ACTIONS(2040), 1, + ACTIONS(2024), 1, anon_sym_PIPE, - ACTIONS(2042), 1, + ACTIONS(2026), 1, anon_sym_AMP, - ACTIONS(2044), 1, + ACTIONS(2028), 1, anon_sym_CARET, - ACTIONS(2052), 1, + ACTIONS(2036), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2076), 1, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2056), 1, anon_sym_is, - STATE(1384), 1, + STATE(1292), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2026), 2, + ACTIONS(2010), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2038), 2, + ACTIONS(2022), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2046), 2, + ACTIONS(2030), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, + ACTIONS(910), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1408), 6, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1154), 6, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_RBRACE, anon_sym_for, anon_sym_PLUS_EQ, - [100916] = 8, - ACTIONS(2062), 1, + [99803] = 9, + ACTIONS(2050), 1, anon_sym_LBRACE, - ACTIONS(2064), 1, + ACTIONS(2052), 1, sym_isMutableFlag, - STATE(1775), 1, + ACTIONS(2058), 1, + anon_sym_COLON, + STATE(1727), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, - STATE(2237), 1, + STATE(2158), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(690), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 30, + ACTIONS(692), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -104809,67 +101492,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100974] = 4, + [99863] = 8, + ACTIONS(2042), 1, + anon_sym_elif, + ACTIONS(2044), 1, + anon_sym_else, + STATE(1166), 1, + aux_sym_if_statement_repeat1, + STATE(1388), 1, + sym_elif_clause, + STATE(1619), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1219), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1221), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2062), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [101024] = 4, + anon_sym_TILDE, + sym_float, + ACTIONS(2060), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [99921] = 5, + ACTIONS(2002), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1219), 6, + ACTIONS(918), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1221), 31, + ACTIONS(916), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104901,26 +101589,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101074] = 8, - ACTIONS(1922), 1, - anon_sym_not, - ACTIONS(1936), 1, + [99973] = 7, + ACTIONS(1899), 1, anon_sym_is, - STATE(1182), 1, + STATE(1056), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 3, + ACTIONS(1875), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1934), 4, + ACTIONS(1897), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 13, + ACTIONS(1561), 13, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -104934,7 +101620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1225), 16, + ACTIONS(1563), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104943,6 +101629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_not, anon_sym_and, anon_sym_or, sym_integer, @@ -104951,21 +101638,86 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [101132] = 4, + [100029] = 23, + ACTIONS(878), 1, + anon_sym_EQ, + ACTIONS(2004), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_LBRACK, + ACTIONS(2012), 1, + anon_sym_STAR_STAR, + ACTIONS(2014), 1, + anon_sym_QMARK_DOT, + ACTIONS(2018), 1, + anon_sym_PLUS, + ACTIONS(2020), 1, + anon_sym_DASH, + ACTIONS(2024), 1, + anon_sym_PIPE, + ACTIONS(2026), 1, + anon_sym_AMP, + ACTIONS(2028), 1, + anon_sym_CARET, + ACTIONS(2036), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + STATE(1292), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1272), 6, + ACTIONS(888), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2010), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2022), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2030), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(910), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(882), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_PLUS_EQ, + [100117] = 4, + STATE(1155), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1024), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1270), 31, + ACTIONS(1026), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104974,16 +101726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -104997,50 +101749,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101182] = 12, - ACTIONS(2020), 1, - anon_sym_LPAREN, - ACTIONS(2022), 1, - anon_sym_LBRACK, - ACTIONS(2028), 1, - anon_sym_STAR_STAR, - ACTIONS(2030), 1, - anon_sym_QMARK_DOT, - ACTIONS(2052), 1, - anon_sym_QMARK_LBRACK, - STATE(1384), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [100167] = 5, + ACTIONS(2002), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2026), 2, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1068), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2038), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1360), 4, - anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 24, + ACTIONS(1070), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -105051,23 +101795,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [101248] = 8, - ACTIONS(2058), 1, + anon_sym_QMARK_LBRACK, + [100219] = 8, + ACTIONS(2042), 1, anon_sym_elif, - ACTIONS(2060), 1, + ACTIONS(2044), 1, anon_sym_else, - STATE(1184), 1, + STATE(1251), 1, aux_sym_if_statement_repeat1, - STATE(1480), 1, + STATE(1388), 1, sym_elif_clause, - STATE(1670), 1, + STATE(1624), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 12, + ACTIONS(2066), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -105078,7 +101823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2086), 22, + ACTIONS(2064), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -105101,21 +101846,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [101306] = 4, + [100277] = 6, + ACTIONS(2002), 1, + anon_sym_PLUS, + ACTIONS(2038), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1220), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1328), 6, + ACTIONS(918), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1330), 31, + ACTIONS(916), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105130,7 +101878,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_DASH, @@ -105147,41 +101894,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101356] = 8, - ACTIONS(1975), 1, - anon_sym_LBRACE, - ACTIONS(1977), 1, - sym_isMutableFlag, - STATE(1416), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2109), 1, - aux_sym_comparison_operator_repeat1, + [100331] = 10, + ACTIONS(2002), 1, + anon_sym_PLUS, + ACTIONS(2038), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_as, + ACTIONS(2070), 1, + anon_sym_if, + ACTIONS(2072), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, + ACTIONS(1627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1243), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1241), 25, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_for, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, @@ -105197,98 +101946,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101414] = 4, - STATE(1227), 1, - aux_sym_dotted_name_repeat1, + [100393] = 7, + ACTIONS(1899), 1, + anon_sym_is, + STATE(1056), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1471), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1875), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1469), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1897), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1561), 13, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1563), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [101464] = 14, - ACTIONS(2020), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [100449] = 8, + ACTIONS(2074), 1, + anon_sym_elif, + ACTIONS(2076), 1, + anon_sym_else, + STATE(1196), 1, + aux_sym_if_statement_repeat1, + STATE(1433), 1, + sym_elif_clause, + STATE(1676), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2062), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2022), 1, anon_sym_LBRACK, - ACTIONS(2028), 1, - anon_sym_STAR_STAR, - ACTIONS(2030), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2034), 1, anon_sym_PLUS, - ACTIONS(2036), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2052), 1, - anon_sym_QMARK_LBRACK, - STATE(1384), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_TILDE, + sym_float, + ACTIONS(2060), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [100507] = 8, + ACTIONS(2002), 1, + anon_sym_PLUS, + ACTIONS(2038), 1, + anon_sym_and, + ACTIONS(2072), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2026), 2, + ACTIONS(1627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1199), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2038), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1360), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 23, - anon_sym_DOT, + ACTIONS(1197), 27, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_for, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -105299,42 +102094,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [101534] = 15, - ACTIONS(2020), 1, + anon_sym_QMARK_LBRACK, + [100565] = 10, + ACTIONS(2004), 1, anon_sym_LPAREN, - ACTIONS(2022), 1, + ACTIONS(2006), 1, anon_sym_LBRACK, - ACTIONS(2028), 1, + ACTIONS(2012), 1, anon_sym_STAR_STAR, - ACTIONS(2030), 1, + ACTIONS(2014), 1, anon_sym_QMARK_DOT, - ACTIONS(2034), 1, - anon_sym_PLUS, ACTIONS(2036), 1, - anon_sym_DASH, - ACTIONS(2052), 1, anon_sym_QMARK_LBRACK, - STATE(1384), 1, + STATE(1292), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2026), 2, + ACTIONS(936), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2038), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2046), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1360), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 21, + ACTIONS(938), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105348,52 +102134,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [101606] = 16, - ACTIONS(2020), 1, + [100627] = 14, + ACTIONS(2004), 1, anon_sym_LPAREN, - ACTIONS(2022), 1, + ACTIONS(2006), 1, anon_sym_LBRACK, - ACTIONS(2028), 1, + ACTIONS(2012), 1, anon_sym_STAR_STAR, - ACTIONS(2030), 1, + ACTIONS(2014), 1, anon_sym_QMARK_DOT, - ACTIONS(2034), 1, + ACTIONS(2018), 1, anon_sym_PLUS, - ACTIONS(2036), 1, + ACTIONS(2020), 1, anon_sym_DASH, - ACTIONS(2044), 1, - anon_sym_CARET, - ACTIONS(2052), 1, + ACTIONS(2036), 1, anon_sym_QMARK_LBRACK, - STATE(1384), 1, + STATE(1292), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2026), 2, + ACTIONS(2010), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2038), 2, + ACTIONS(2022), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2046), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1360), 3, + ACTIONS(942), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 20, + ACTIONS(944), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105409,28 +102195,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [101680] = 8, - ACTIONS(2058), 1, + [100697] = 8, + ACTIONS(2042), 1, anon_sym_elif, - ACTIONS(2060), 1, + ACTIONS(2044), 1, anon_sym_else, - STATE(1262), 1, + STATE(1153), 1, aux_sym_if_statement_repeat1, - STATE(1480), 1, + STATE(1388), 1, sym_elif_clause, - STATE(1666), 1, + STATE(1625), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2088), 12, + ACTIONS(2080), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -105441,7 +102230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2090), 22, + ACTIONS(2078), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -105464,32 +102253,42 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [101738] = 10, - ACTIONS(2020), 1, + [100755] = 15, + ACTIONS(2004), 1, anon_sym_LPAREN, - ACTIONS(2022), 1, + ACTIONS(2006), 1, anon_sym_LBRACK, - ACTIONS(2028), 1, + ACTIONS(2012), 1, anon_sym_STAR_STAR, - ACTIONS(2030), 1, + ACTIONS(2014), 1, anon_sym_QMARK_DOT, - ACTIONS(2052), 1, + ACTIONS(2018), 1, + anon_sym_PLUS, + ACTIONS(2020), 1, + anon_sym_DASH, + ACTIONS(2036), 1, anon_sym_QMARK_LBRACK, - STATE(1384), 1, + STATE(1292), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 6, - anon_sym_EQ, + ACTIONS(2010), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(2022), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2030), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(942), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 26, + ACTIONS(944), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105503,59 +102302,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [101800] = 17, - ACTIONS(2020), 1, + [100827] = 16, + ACTIONS(2004), 1, anon_sym_LPAREN, - ACTIONS(2022), 1, + ACTIONS(2006), 1, anon_sym_LBRACK, - ACTIONS(2028), 1, + ACTIONS(2012), 1, anon_sym_STAR_STAR, - ACTIONS(2030), 1, + ACTIONS(2014), 1, anon_sym_QMARK_DOT, - ACTIONS(2034), 1, + ACTIONS(2018), 1, anon_sym_PLUS, - ACTIONS(2036), 1, + ACTIONS(2020), 1, anon_sym_DASH, - ACTIONS(2042), 1, - anon_sym_AMP, - ACTIONS(2044), 1, + ACTIONS(2028), 1, anon_sym_CARET, - ACTIONS(2052), 1, + ACTIONS(2036), 1, anon_sym_QMARK_LBRACK, - STATE(1384), 1, + STATE(1292), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2026), 2, + ACTIONS(2010), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2038), 2, + ACTIONS(2022), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2046), 2, + ACTIONS(2030), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1360), 3, + ACTIONS(942), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 19, + ACTIONS(944), 20, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105570,98 +102362,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [101876] = 5, + [100901] = 17, + ACTIONS(2004), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_LBRACK, + ACTIONS(2012), 1, + anon_sym_STAR_STAR, + ACTIONS(2014), 1, + anon_sym_QMARK_DOT, + ACTIONS(2018), 1, + anon_sym_PLUS, + ACTIONS(2020), 1, + anon_sym_DASH, + ACTIONS(2026), 1, + anon_sym_AMP, + ACTIONS(2028), 1, + anon_sym_CARET, + ACTIONS(2036), 1, + anon_sym_QMARK_LBRACK, + STATE(1292), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2092), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1220), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1372), 6, - anon_sym_EQ, + ACTIONS(2010), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(2022), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2030), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(942), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1377), 29, + ACTIONS(944), 19, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [100977] = 12, + ACTIONS(2004), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_LBRACK, + ACTIONS(2012), 1, + anon_sym_STAR_STAR, + ACTIONS(2014), 1, + anon_sym_QMARK_DOT, + ACTIONS(2036), 1, anon_sym_QMARK_LBRACK, - [101928] = 9, - ACTIONS(2062), 1, - anon_sym_LBRACE, - ACTIONS(2064), 1, - sym_isMutableFlag, - ACTIONS(2095), 1, - anon_sym_COLON, - STATE(1775), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2214), 1, + STATE(1292), 1, + sym_argument_list, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(2010), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2022), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(942), 4, + anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 29, + ACTIONS(944), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -105672,44 +102481,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [101043] = 10, + ACTIONS(2004), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_LBRACK, + ACTIONS(2012), 1, + anon_sym_STAR_STAR, + ACTIONS(2014), 1, + anon_sym_QMARK_DOT, + ACTIONS(2036), 1, anon_sym_QMARK_LBRACK, - [101988] = 10, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(2082), 1, - anon_sym_and, - ACTIONS(2097), 1, - anon_sym_as, - ACTIONS(2099), 1, - anon_sym_if, - ACTIONS(2101), 1, - anon_sym_or, + STATE(1292), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1390), 5, + ACTIONS(942), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1388), 25, + ACTIONS(944), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, @@ -105724,143 +102533,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [102050] = 8, - ACTIONS(2068), 1, - anon_sym_elif, - ACTIONS(2070), 1, - anon_sym_else, - STATE(1283), 1, - aux_sym_if_statement_repeat1, - STATE(1472), 1, - sym_elif_clause, - STATE(1769), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2088), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2090), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [102108] = 8, - ACTIONS(2068), 1, - anon_sym_elif, - ACTIONS(2070), 1, - anon_sym_else, - STATE(1230), 1, - aux_sym_if_statement_repeat1, - STATE(1472), 1, - sym_elif_clause, - STATE(1771), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2084), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, + [101105] = 8, + ACTIONS(2050), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2086), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [102166] = 8, - ACTIONS(1441), 1, - anon_sym_EQ, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(2082), 1, - anon_sym_and, + ACTIONS(2052), 1, + sym_isMutableFlag, + STATE(1727), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2186), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 4, + ACTIONS(690), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 11, + ACTIONS(692), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_or, - anon_sym_PLUS_EQ, - ACTIONS(1475), 19, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -105875,32 +102583,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102224] = 10, - ACTIONS(2020), 1, + [101163] = 10, + ACTIONS(2004), 1, anon_sym_LPAREN, - ACTIONS(2022), 1, + ACTIONS(2006), 1, anon_sym_LBRACK, - ACTIONS(2028), 1, + ACTIONS(2012), 1, anon_sym_STAR_STAR, - ACTIONS(2030), 1, + ACTIONS(2014), 1, anon_sym_QMARK_DOT, - ACTIONS(2052), 1, + ACTIONS(2036), 1, anon_sym_QMARK_LBRACK, - STATE(1384), 1, + STATE(1292), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 6, + ACTIONS(942), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 26, + ACTIONS(944), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105927,22 +102635,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [102286] = 4, - STATE(1031), 1, - aux_sym_dotted_name_repeat1, + [101225] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1479), 7, + ACTIONS(2082), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1182), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1477), 31, - anon_sym_DOT, + ACTIONS(1438), 29, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -105950,16 +102660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -105973,32 +102682,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102336] = 10, - ACTIONS(2020), 1, - anon_sym_LPAREN, - ACTIONS(2022), 1, - anon_sym_LBRACK, - ACTIONS(2028), 1, - anon_sym_STAR_STAR, - ACTIONS(2030), 1, - anon_sym_QMARK_DOT, - ACTIONS(2052), 1, - anon_sym_QMARK_LBRACK, - STATE(1384), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [101277] = 8, + ACTIONS(918), 1, + anon_sym_EQ, + ACTIONS(2002), 1, + anon_sym_PLUS, + ACTIONS(2038), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1316), 6, - anon_sym_EQ, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1318), 26, + ACTIONS(916), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106006,106 +102708,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_RBRACE, - anon_sym_in, anon_sym_for, - anon_sym_not, - anon_sym_and, + anon_sym_QMARK_DOT, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [102398] = 22, - ACTIONS(1225), 1, - anon_sym_EQ, - ACTIONS(2020), 1, + ACTIONS(926), 19, anon_sym_LPAREN, - ACTIONS(2022), 1, anon_sym_LBRACK, - ACTIONS(2028), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2030), 1, - anon_sym_QMARK_DOT, - ACTIONS(2032), 1, anon_sym_not, - ACTIONS(2034), 1, - anon_sym_PLUS, - ACTIONS(2036), 1, anon_sym_DASH, - ACTIONS(2040), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2042), 1, anon_sym_AMP, - ACTIONS(2044), 1, anon_sym_CARET, - ACTIONS(2050), 1, - anon_sym_is, - ACTIONS(2052), 1, - anon_sym_QMARK_LBRACK, - STATE(1233), 1, - aux_sym_comparison_operator_repeat1, - STATE(1384), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2026), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2038), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 11, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [102484] = 8, - ACTIONS(2068), 1, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [101335] = 8, + ACTIONS(2074), 1, anon_sym_elif, - ACTIONS(2070), 1, + ACTIONS(2076), 1, anon_sym_else, - STATE(1283), 1, + STATE(1205), 1, aux_sym_if_statement_repeat1, - STATE(1472), 1, + STATE(1433), 1, sym_elif_clause, - STATE(1707), 1, + STATE(1643), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2054), 12, - sym__dedent, + ACTIONS(2046), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -106116,7 +102759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2056), 22, + ACTIONS(2040), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -106139,29 +102782,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [102542] = 8, - ACTIONS(2074), 1, - anon_sym_PLUS, - ACTIONS(2082), 1, - anon_sym_and, - ACTIONS(2101), 1, - anon_sym_or, + [101393] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1182), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1501), 5, + ACTIONS(932), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1503), 27, + ACTIONS(934), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -106173,7 +102809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, @@ -106189,108 +102828,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102600] = 3, + [101443] = 7, + ACTIONS(1899), 1, + anon_sym_is, + STATE(1056), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1875), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1897), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1561), 13, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1563), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [101499] = 7, + ACTIONS(1899), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [102647] = 4, - STATE(1318), 1, + STATE(1056), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1875), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1897), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1561), 13, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1563), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [102696] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [101555] = 6, + ACTIONS(2002), 1, + anon_sym_PLUS, + ACTIONS(2038), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 7, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1078), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1675), 31, + ACTIONS(1080), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106299,16 +102952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106322,19 +102974,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102743] = 3, + [101609] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 7, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(874), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1839), 31, + ACTIONS(876), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106343,16 +102997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106366,36 +103020,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102790] = 8, - ACTIONS(1881), 1, + [101659] = 8, + ACTIONS(2050), 1, anon_sym_LBRACE, - ACTIONS(1883), 1, + ACTIONS(2052), 1, sym_isMutableFlag, - STATE(1820), 1, - aux_sym_comparison_operator_repeat1, - STATE(1954), 1, + STATE(1727), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, + STATE(2158), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(690), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 29, - sym__newline, + ACTIONS(692), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -106415,19 +103070,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102847] = 3, + [101717] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 7, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(874), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1701), 31, + ACTIONS(876), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106436,16 +103093,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106459,37 +103116,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102894] = 3, + [101767] = 8, + ACTIONS(2050), 1, + anon_sym_LBRACE, + ACTIONS(2052), 1, + sym_isMutableFlag, + STATE(1537), 1, + aux_sym_comparison_operator_repeat1, + STATE(1727), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 7, - anon_sym_EQ, + ACTIONS(690), 4, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 31, + ACTIONS(692), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106503,19 +103166,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102941] = 3, + [101825] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 7, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1327), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1843), 31, + ACTIONS(1329), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106524,16 +103189,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106547,104 +103212,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102988] = 3, + [101875] = 8, + ACTIONS(1883), 1, + anon_sym_not, + ACTIONS(1899), 1, + anon_sym_is, + STATE(1169), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1875), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1705), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1897), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 13, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(880), 16, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [101933] = 22, + ACTIONS(880), 1, + anon_sym_EQ, + ACTIONS(2004), 1, + anon_sym_LPAREN, + ACTIONS(2006), 1, + anon_sym_LBRACK, + ACTIONS(2012), 1, + anon_sym_STAR_STAR, + ACTIONS(2014), 1, + anon_sym_QMARK_DOT, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2018), 1, + anon_sym_PLUS, + ACTIONS(2020), 1, + anon_sym_DASH, + ACTIONS(2024), 1, anon_sym_PIPE, + ACTIONS(2026), 1, anon_sym_AMP, + ACTIONS(2028), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(2034), 1, anon_sym_is, + ACTIONS(2036), 1, anon_sym_QMARK_LBRACK, - [103035] = 8, - ACTIONS(2005), 1, - anon_sym_LBRACE, - ACTIONS(2007), 1, - sym_isMutableFlag, - STATE(1298), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2209), 1, + STATE(1292), 1, + sym_argument_list, + STATE(2150), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 6, - anon_sym_EQ, + ACTIONS(2010), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(2022), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2030), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 27, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + [102019] = 8, + ACTIONS(2074), 1, + anon_sym_elif, + ACTIONS(2076), 1, + anon_sym_else, + STATE(1205), 1, + aux_sym_if_statement_repeat1, + STATE(1433), 1, + sym_elif_clause, + STATE(1706), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2066), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2064), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [102077] = 8, + ACTIONS(2074), 1, + anon_sym_elif, + ACTIONS(2076), 1, + anon_sym_else, + STATE(1184), 1, + aux_sym_if_statement_repeat1, + STATE(1433), 1, + sym_elif_clause, + STATE(1700), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2080), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [103092] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2078), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [102135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 7, + ACTIONS(1503), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106652,7 +103438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 31, + ACTIONS(1501), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106684,13 +103470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103139] = 4, - ACTIONS(2103), 1, - anon_sym_DASH_GT, + [102182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 7, + ACTIONS(1741), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106698,7 +103482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1412), 30, + ACTIONS(1739), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106707,15 +103491,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106729,11 +103514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103188] = 3, + [102229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 7, + ACTIONS(1519), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106741,7 +103526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 31, + ACTIONS(1517), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106773,11 +103558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103235] = 3, + [102276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 7, + ACTIONS(1499), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106785,7 +103570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 31, + ACTIONS(1497), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106817,37 +103602,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103282] = 3, - ACTIONS(3), 2, + [102323] = 8, + ACTIONS(692), 1, + anon_sym_LF, + ACTIONS(2085), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, + sym_isMutableFlag, + STATE(1876), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2171), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1749), 31, + ACTIONS(690), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106855,28 +103643,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [103329] = 5, - ACTIONS(2105), 1, - anon_sym_PIPE, - STATE(1247), 1, - aux_sym_union_type_repeat1, + [102380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 6, + ACTIONS(1523), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 30, + ACTIONS(1521), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106885,18 +103672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106907,11 +103695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103380] = 3, + [102427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 7, + ACTIONS(1477), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106919,7 +103707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 31, + ACTIONS(1479), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106951,11 +103739,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103427] = 3, + [102474] = 6, + ACTIONS(2093), 1, + anon_sym_elif, + STATE(1205), 1, + aux_sym_if_statement_repeat1, + STATE(1433), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 7, + ACTIONS(2089), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2091), 23, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [102527] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106963,7 +103798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 31, + ACTIONS(1613), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106995,19 +103830,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103474] = 3, + [102574] = 4, + STATE(1273), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 7, + ACTIONS(1082), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 31, + ACTIONS(1084), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107016,16 +103852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107039,11 +103875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103521] = 3, + [102623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 7, + ACTIONS(1557), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107051,7 +103887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 31, + ACTIONS(1559), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107083,11 +103919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103568] = 3, + [102670] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 7, + ACTIONS(1607), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107095,7 +103931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1861), 31, + ACTIONS(1609), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107127,11 +103963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103615] = 3, + [102717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 7, + ACTIONS(1603), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107139,7 +103975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 31, + ACTIONS(1605), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107171,11 +104007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103662] = 3, + [102764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 7, + ACTIONS(1615), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107183,7 +104019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1857), 31, + ACTIONS(1617), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107215,11 +104051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103709] = 3, + [102811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 7, + ACTIONS(1599), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107227,7 +104063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 31, + ACTIONS(1601), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107259,11 +104095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103756] = 3, + [102858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 7, + ACTIONS(1579), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107271,7 +104107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1849), 31, + ACTIONS(1581), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107303,11 +104139,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103803] = 3, + [102905] = 8, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_isMutableFlag, + STATE(1606), 1, + aux_sym_comparison_operator_repeat1, + STATE(1802), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 7, + ACTIONS(690), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(692), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [102962] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1695), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107315,7 +104200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 31, + ACTIONS(1697), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107347,11 +104232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103850] = 3, + [103009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 7, + ACTIONS(1699), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107359,7 +104244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 31, + ACTIONS(1701), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107391,19 +104276,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103897] = 3, + [103056] = 4, + STATE(1273), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 7, + ACTIONS(1342), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 31, + ACTIONS(1344), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107412,16 +104298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107435,19 +104321,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103944] = 3, + [103105] = 4, + STATE(1262), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 7, + ACTIONS(1020), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 31, + ACTIONS(1022), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107456,16 +104343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107479,24 +104366,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103991] = 6, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2110), 1, - anon_sym_not, - ACTIONS(2112), 1, - anon_sym_PLUS, + [103154] = 4, + STATE(1273), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 6, + ACTIONS(1188), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(1190), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107505,14 +104388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107526,60 +104411,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104044] = 6, - ACTIONS(2118), 1, - anon_sym_elif, - STATE(1262), 1, - aux_sym_if_statement_repeat1, - STATE(1480), 1, - sym_elif_clause, + [103203] = 4, + STATE(1273), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2114), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1323), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1325), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [103252] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1759), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2116), 23, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1761), 31, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [104097] = 4, - ACTIONS(2121), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [103299] = 4, + ACTIONS(2096), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 7, + ACTIONS(1229), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107587,7 +104514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 30, + ACTIONS(1231), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107618,11 +104545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104146] = 3, + [103348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 7, + ACTIONS(1813), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107630,7 +104557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 31, + ACTIONS(1815), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107662,11 +104589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104193] = 3, + [103395] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 7, + ACTIONS(1835), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107674,7 +104601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1817), 31, + ACTIONS(1833), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107706,11 +104633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104240] = 3, + [103442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 7, + ACTIONS(1831), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107718,7 +104645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 31, + ACTIONS(1829), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107750,19 +104677,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104287] = 3, + [103489] = 5, + ACTIONS(2098), 1, + anon_sym_PIPE, + STATE(1226), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 7, + ACTIONS(1188), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 31, + ACTIONS(1190), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107771,19 +104701,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107794,11 +104723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104334] = 3, + [103540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 7, + ACTIONS(1827), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107806,7 +104735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1813), 31, + ACTIONS(1825), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107838,11 +104767,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104381] = 3, + [103587] = 8, + ACTIONS(692), 1, + anon_sym_LF, + ACTIONS(2085), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, + sym_isMutableFlag, + STATE(1763), 1, + aux_sym_comparison_operator_repeat1, + STATE(1876), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(690), 32, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [103644] = 5, + ACTIONS(2101), 1, + anon_sym_in, + ACTIONS(2103), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 7, + ACTIONS(1681), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107850,7 +104832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1809), 31, + ACTIONS(1683), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107861,10 +104843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, @@ -107882,11 +104862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104428] = 3, + [103695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 7, + ACTIONS(1823), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107894,7 +104874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1705), 31, + ACTIONS(1821), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107926,11 +104906,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104475] = 3, + [103742] = 9, + ACTIONS(2105), 1, + anon_sym_EQ, + ACTIONS(2107), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + sym_isMutableFlag, + STATE(1990), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2180), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 7, + ACTIONS(690), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(692), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [103801] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1819), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -107938,7 +104968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1805), 31, + ACTIONS(1817), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107970,19 +105000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104522] = 3, + [103848] = 4, + STATE(1218), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 7, + ACTIONS(1024), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 31, + ACTIONS(1026), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107991,16 +105022,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108014,20 +105045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104569] = 4, - STATE(1302), 1, - aux_sym_union_type_repeat1, + [103897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 6, + ACTIONS(1811), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 31, + ACTIONS(1809), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108036,16 +105066,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108059,11 +105089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104618] = 3, + [103944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 7, + ACTIONS(1807), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108071,7 +105101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1865), 31, + ACTIONS(1805), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108103,11 +105133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104665] = 3, + [103991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 7, + ACTIONS(1663), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108115,7 +105145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1789), 31, + ACTIONS(1665), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108147,11 +105177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104712] = 3, + [104038] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 7, + ACTIONS(1803), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108159,7 +105189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 31, + ACTIONS(1801), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108191,11 +105221,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104759] = 3, + [104085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 7, + ACTIONS(1681), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108203,7 +105233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1781), 31, + ACTIONS(1683), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108235,11 +105265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104806] = 3, + [104132] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 7, + ACTIONS(880), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108247,7 +105277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1777), 31, + ACTIONS(948), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108279,20 +105309,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104853] = 4, - STATE(1322), 1, - aux_sym_dotted_name_repeat1, + [104179] = 4, + ACTIONS(2111), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1479), 6, + ACTIONS(1082), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1477), 31, + ACTIONS(1084), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108310,7 +105341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108324,11 +105354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104902] = 3, + [104228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 7, + ACTIONS(1799), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108336,7 +105366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 31, + ACTIONS(1797), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108368,11 +105398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104949] = 3, + [104275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 7, + ACTIONS(1795), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108380,7 +105410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1601), 31, + ACTIONS(1793), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108412,42 +105442,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104996] = 8, - ACTIONS(1881), 1, - anon_sym_LBRACE, - ACTIONS(1883), 1, - sym_isMutableFlag, - STATE(1954), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2237), 1, - aux_sym_comparison_operator_repeat1, + [104322] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(1669), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 29, - sym__newline, + ACTIONS(1671), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108461,67 +105486,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105053] = 6, - ACTIONS(2123), 1, - anon_sym_elif, - STATE(1283), 1, - aux_sym_if_statement_repeat1, - STATE(1472), 1, - sym_elif_clause, + [104369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2114), 12, - sym__dedent, - sym_string_start, + ACTIONS(1791), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1789), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_AT, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [104416] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1787), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2116), 23, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1785), 31, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [105106] = 4, - STATE(1279), 1, - aux_sym_dotted_name_repeat1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [104463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1471), 6, + ACTIONS(1783), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1469), 31, + ACTIONS(1781), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108530,16 +105595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108553,11 +105618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105155] = 3, + [104510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 7, + ACTIONS(1777), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108565,7 +105630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 31, + ACTIONS(1775), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108597,11 +105662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105202] = 3, + [104557] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 7, + ACTIONS(1773), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108609,7 +105674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 31, + ACTIONS(1771), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108641,11 +105706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105249] = 3, + [104604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 7, + ACTIONS(1769), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108653,7 +105718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1223), 31, + ACTIONS(1767), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108685,11 +105750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105296] = 3, + [104651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 7, + ACTIONS(1769), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108697,7 +105762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1721), 31, + ACTIONS(1767), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108729,11 +105794,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105343] = 3, + [104698] = 6, + ACTIONS(2113), 1, + anon_sym_elif, + STATE(1251), 1, + aux_sym_if_statement_repeat1, + STATE(1388), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2089), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2091), 23, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [104751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 7, + ACTIONS(1765), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108741,7 +105853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 31, + ACTIONS(1763), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108773,27 +105885,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105390] = 5, - ACTIONS(1685), 1, - anon_sym_PLUS, + [104798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 6, + ACTIONS(1681), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 6, + ACTIONS(1683), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - ACTIONS(1681), 25, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, @@ -108803,7 +105910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, anon_sym_PERCENT, @@ -108819,65 +105929,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105441] = 3, + [104845] = 8, + ACTIONS(2119), 1, + anon_sym_not, + ACTIONS(2125), 1, + anon_sym_is, + STATE(1254), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 7, + ACTIONS(2122), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1481), 4, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1687), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + ACTIONS(2116), 5, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [105488] = 4, - ACTIONS(2126), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1420), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1418), 30, + ACTIONS(1483), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108887,14 +105963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108902,17 +105977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [105537] = 3, + [104902] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 7, + ACTIONS(1757), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -108920,7 +105990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 31, + ACTIONS(1755), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108952,20 +106022,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105584] = 4, - STATE(1318), 1, - aux_sym_comparison_operator_repeat1, + [104949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 6, + ACTIONS(1753), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 31, + ACTIONS(1751), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108974,16 +106043,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108997,11 +106066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105633] = 3, + [104996] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 7, + ACTIONS(1753), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109009,7 +106078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1769), 31, + ACTIONS(1751), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109041,20 +106110,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105680] = 4, - STATE(1318), 1, - aux_sym_comparison_operator_repeat1, + [105043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 6, + ACTIONS(1689), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 31, + ACTIONS(1691), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109063,16 +106131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109086,13 +106154,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105729] = 4, - STATE(1318), 1, + [105090] = 4, + STATE(1254), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 6, + ACTIONS(1563), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109131,19 +106199,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105778] = 3, + [105139] = 4, + STATE(1254), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 7, + ACTIONS(1563), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1709), 31, + ACTIONS(1561), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109152,16 +106221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109175,19 +106244,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105825] = 3, + [105188] = 4, + STATE(1254), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 7, + ACTIONS(1563), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1763), 31, + ACTIONS(1561), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109196,62 +106266,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [105872] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1685), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(1683), 5, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1687), 13, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1681), 18, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109265,65 +106289,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105923] = 3, + [105237] = 5, + STATE(1262), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 31, + ACTIONS(2128), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [105970] = 4, - STATE(1247), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1336), 6, + ACTIONS(1374), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1338), 31, - anon_sym_DOT, + ACTIONS(1379), 29, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -109335,7 +106317,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -109354,34 +106335,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106019] = 9, - ACTIONS(2128), 1, - anon_sym_EQ, - ACTIONS(2130), 1, + [105288] = 8, + ACTIONS(1867), 1, anon_sym_LBRACE, - ACTIONS(2132), 1, + ACTIONS(1869), 1, sym_isMutableFlag, - STATE(1980), 1, + STATE(1802), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, - STATE(2235), 1, + STATE(2186), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(690), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(692), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -109404,20 +106384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106078] = 4, - STATE(1302), 1, - aux_sym_union_type_repeat1, + [105345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 6, + ACTIONS(1749), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 31, + ACTIONS(1747), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109426,16 +106405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109449,11 +106428,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106127] = 3, + [105392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 7, + ACTIONS(1745), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109461,7 +106440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 31, + ACTIONS(1743), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109493,20 +106472,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106174] = 4, - STATE(1302), 1, - aux_sym_union_type_repeat1, + [105439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 6, + ACTIONS(1737), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 31, + ACTIONS(1735), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109515,16 +106493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109538,68 +106516,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106223] = 8, - ACTIONS(748), 1, - anon_sym_LF, - ACTIONS(2134), 1, - anon_sym_LBRACE, - ACTIONS(2136), 1, - sym_isMutableFlag, - STATE(1831), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2222), 1, + [105486] = 4, + STATE(1254), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [106280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 7, + ACTIONS(1563), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1593), 31, + ACTIONS(1561), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109608,16 +106538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109631,11 +106561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106327] = 3, + [105535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 7, + ACTIONS(1539), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109643,7 +106573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 31, + ACTIONS(1537), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109675,40 +106605,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106374] = 8, - ACTIONS(748), 1, - anon_sym_LF, - ACTIONS(2134), 1, - anon_sym_LBRACE, - ACTIONS(2136), 1, - sym_isMutableFlag, - STATE(1794), 1, - aux_sym_comparison_operator_repeat1, - STATE(1831), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + [105582] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 32, + ACTIONS(1713), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1711), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -109716,19 +106643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [106431] = 3, + [105629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 7, + ACTIONS(1717), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109736,7 +106661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 31, + ACTIONS(1715), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109768,31 +106693,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106478] = 8, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(1294), 1, + [105676] = 8, + ACTIONS(1995), 1, + anon_sym_LBRACE, + ACTIONS(1997), 1, + sym_isMutableFlag, + STATE(1236), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2153), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(690), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1225), 4, + ACTIONS(692), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [105733] = 4, + ACTIONS(2131), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1311), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2024), 5, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1313), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 24, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [105782] = 4, + STATE(1226), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1259), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1261), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109802,9 +106810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, @@ -109816,12 +106826,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [106535] = 3, + [105831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 7, + ACTIONS(1543), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109829,7 +106844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 31, + ACTIONS(1541), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109861,23 +106876,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106582] = 8, - ACTIONS(748), 1, + [105878] = 8, + ACTIONS(692), 1, anon_sym_LF, - ACTIONS(2134), 1, + ACTIONS(2085), 1, anon_sym_LBRACE, - ACTIONS(2136), 1, + ACTIONS(2087), 1, sym_isMutableFlag, - STATE(1831), 1, + STATE(1876), 1, sym_dict_expr, - STATE(2053), 1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, - STATE(2237), 1, + STATE(2186), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 32, + ACTIONS(690), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109910,11 +106925,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [106639] = 3, + [105935] = 8, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + STATE(1261), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(880), 4, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK_LBRACK, + [105992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 7, + ACTIONS(1721), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -109922,7 +106986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 31, + ACTIONS(1719), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109954,20 +107018,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106686] = 4, - STATE(1302), 1, + [106039] = 5, + ACTIONS(2133), 1, + anon_sym_EQ, + STATE(1273), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1314), 6, - anon_sym_EQ, + ACTIONS(1362), 5, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 31, + ACTIONS(1364), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109999,11 +107064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106735] = 3, + [106090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 7, + ACTIONS(1725), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -110011,7 +107076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1607), 31, + ACTIONS(1723), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110043,31 +107108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106782] = 8, - ACTIONS(2141), 1, - anon_sym_not, - ACTIONS(2147), 1, - anon_sym_is, - STATE(1318), 1, - aux_sym_comparison_operator_repeat1, + [106137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2144), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 4, + ACTIONS(1729), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2138), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1569), 24, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1727), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110076,14 +107129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -110091,12 +107146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [106839] = 3, + [106184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 7, + ACTIONS(1669), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -110104,7 +107164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 31, + ACTIONS(1671), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110136,11 +107196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106886] = 3, + [106231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 7, + ACTIONS(1677), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -110148,7 +107208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1795), 31, + ACTIONS(1679), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110180,11 +107240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106933] = 3, + [106278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 7, + ACTIONS(1527), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -110192,7 +107252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 31, + ACTIONS(1525), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110224,23 +107284,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106980] = 5, - STATE(1322), 1, - aux_sym_dotted_name_repeat1, + [106325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2150), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1362), 6, + ACTIONS(1673), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 29, + ACTIONS(1675), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -110248,15 +107305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -110270,21 +107328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107031] = 5, - ACTIONS(2153), 1, - anon_sym_EQ, - STATE(1302), 1, - aux_sym_union_type_repeat1, + [106372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 5, + ACTIONS(1531), 7, + anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1342), 31, + ACTIONS(1529), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110293,16 +107349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -110316,18 +107372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107082] = 3, + [106419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 6, + ACTIONS(1733), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 31, + ACTIONS(1731), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110336,16 +107393,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -110359,41 +107416,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107128] = 8, - ACTIONS(2130), 1, - anon_sym_LBRACE, - ACTIONS(2132), 1, - sym_isMutableFlag, - STATE(1980), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2237), 1, - aux_sym_comparison_operator_repeat1, + [106466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(1535), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(1533), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -110407,18 +107460,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107184] = 3, + [106513] = 4, + ACTIONS(2133), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 6, - anon_sym_EQ, + ACTIONS(1362), 5, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1781), 31, + ACTIONS(1364), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110450,23 +107504,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107230] = 6, - ACTIONS(2155), 1, - anon_sym_in, - ACTIONS(2157), 1, - anon_sym_not, - ACTIONS(2159), 1, - anon_sym_PLUS, + [106561] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 5, + ACTIONS(1757), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(1755), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110476,9 +107525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, @@ -110496,18 +107547,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107282] = 3, + [106607] = 5, + ACTIONS(2135), 1, + anon_sym_in, + ACTIONS(2137), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 6, + ACTIONS(1681), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 31, + ACTIONS(1683), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110517,11 +107572,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, @@ -110539,18 +107592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107328] = 3, + [106657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 6, + ACTIONS(1803), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 31, + ACTIONS(1801), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110582,18 +107635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107374] = 3, + [106703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 6, + ACTIONS(1615), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 31, + ACTIONS(1617), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110625,18 +107678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107420] = 3, + [106749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 6, + ACTIONS(1799), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1769), 31, + ACTIONS(1797), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110668,18 +107721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107466] = 3, + [106795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 6, + ACTIONS(1795), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 31, + ACTIONS(1793), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110711,18 +107764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107512] = 3, + [106841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 6, + ACTIONS(1669), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1839), 31, + ACTIONS(1671), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110754,18 +107807,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107558] = 3, + [106887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 6, + ACTIONS(1523), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1789), 31, + ACTIONS(1521), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110797,18 +107850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107604] = 3, + [106933] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 6, + ACTIONS(1611), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1593), 31, + ACTIONS(1613), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110840,18 +107893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107650] = 3, + [106979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 6, + ACTIONS(1607), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 31, + ACTIONS(1609), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110883,18 +107936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107696] = 3, + [107025] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 6, + ACTIONS(1811), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 31, + ACTIONS(1809), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110926,40 +107979,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107742] = 7, - ACTIONS(2161), 1, - sym_isMutableFlag, - STATE(1298), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2237), 1, - aux_sym_comparison_operator_repeat1, + [107071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 5, + ACTIONS(1603), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(1605), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -110973,18 +108022,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107796] = 3, + [107117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 6, + ACTIONS(1599), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 31, + ACTIONS(1601), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111016,18 +108065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107842] = 3, + [107163] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 6, + ACTIONS(1579), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 31, + ACTIONS(1581), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111059,18 +108108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107888] = 3, + [107209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 6, + ACTIONS(1519), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1223), 31, + ACTIONS(1517), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111102,18 +108151,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107934] = 3, + [107255] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 6, + ACTIONS(1791), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 31, + ACTIONS(1789), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111145,65 +108194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107980] = 7, - ACTIONS(2163), 1, - anon_sym_and, - ACTIONS(2165), 1, - anon_sym_PLUS, + [107301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1439), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1473), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1475), 23, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [108034] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1679), 6, + ACTIONS(1787), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 31, + ACTIONS(1785), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111235,35 +108237,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108080] = 3, + [107347] = 9, + ACTIONS(1026), 1, + sym_string_start, + ACTIONS(1957), 1, + anon_sym_LBRACE, + ACTIONS(1959), 1, + sym_isMutableFlag, + STATE(1340), 1, + sym_dict_expr, + STATE(2098), 1, + aux_sym_comparison_operator_repeat1, + STATE(2249), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 6, - anon_sym_EQ, + ACTIONS(690), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 31, + ACTIONS(692), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111278,18 +108286,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108126] = 3, + [107405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1362), 6, + ACTIONS(1695), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 31, + ACTIONS(1697), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111321,18 +108329,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108172] = 3, + [107451] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 6, + ACTIONS(880), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 31, + ACTIONS(948), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111364,18 +108372,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108218] = 3, + [107497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 6, + ACTIONS(1374), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1805), 31, + ACTIONS(1379), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111407,18 +108415,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108264] = 3, + [107543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 6, + ACTIONS(1557), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 31, + ACTIONS(1559), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111450,35 +108458,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108310] = 3, + [107589] = 8, + ACTIONS(2107), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + sym_isMutableFlag, + STATE(1990), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2180), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 6, - anon_sym_EQ, + ACTIONS(690), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 31, + ACTIONS(692), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111493,68 +108506,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108356] = 10, - ACTIONS(2163), 1, - anon_sym_and, - ACTIONS(2165), 1, - anon_sym_PLUS, - ACTIONS(2167), 1, - anon_sym_as, - ACTIONS(2169), 1, - anon_sym_if, - ACTIONS(2171), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1390), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1388), 23, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + [107645] = 5, + ACTIONS(2101), 1, anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(2103), 1, anon_sym_not, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [108416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 6, + ACTIONS(1681), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1705), 31, + ACTIONS(1683), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111564,11 +108531,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, @@ -111586,18 +108551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108462] = 3, + [107695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 6, + ACTIONS(1783), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1809), 31, + ACTIONS(1781), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111629,61 +108594,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108508] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1811), 6, + [107741] = 23, + ACTIONS(878), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1813), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2139), 1, anon_sym_LPAREN, + ACTIONS(2141), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(2145), 1, anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + ACTIONS(2149), 1, + anon_sym_PLUS, + ACTIONS(2151), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2155), 1, anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_AMP, + ACTIONS(2159), 1, anon_sym_CARET, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(888), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2153), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2161), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(882), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(910), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [108554] = 3, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [107827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 6, + ACTIONS(1777), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 31, + ACTIONS(1775), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111715,18 +108700,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108600] = 3, + [107873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 6, + ACTIONS(1773), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1817), 31, + ACTIONS(1771), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111758,40 +108743,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108646] = 8, - ACTIONS(2163), 1, - anon_sym_and, - ACTIONS(2165), 1, - anon_sym_PLUS, - ACTIONS(2171), 1, - anon_sym_or, + [107919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1501), 5, + ACTIONS(1699), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1503), 25, + ACTIONS(1701), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111806,19 +108786,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108702] = 4, - ACTIONS(2153), 1, - anon_sym_EQ, + [107965] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 5, + ACTIONS(1769), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1342), 31, + ACTIONS(1767), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111850,18 +108829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108750] = 3, + [108011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 6, + ACTIONS(1769), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1607), 31, + ACTIONS(1767), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111893,18 +108872,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108796] = 3, + [108057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 6, + ACTIONS(1765), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 31, + ACTIONS(1763), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111936,18 +108915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108842] = 3, + [108103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 6, + ACTIONS(1681), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 31, + ACTIONS(1683), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111979,40 +108958,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108888] = 8, - ACTIONS(2130), 1, - anon_sym_LBRACE, - ACTIONS(2132), 1, - sym_isMutableFlag, - STATE(1922), 1, - aux_sym_comparison_operator_repeat1, - STATE(1980), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, + [108149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(1477), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(1479), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112027,18 +109001,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108944] = 3, + [108195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 6, + ACTIONS(1681), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1701), 31, + ACTIONS(1683), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112070,18 +109044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108990] = 3, + [108241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 6, + ACTIONS(1807), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 31, + ACTIONS(1805), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112113,26 +109087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109036] = 5, - ACTIONS(1685), 1, - anon_sym_PLUS, + [108287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 5, + ACTIONS(1753), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 6, + ACTIONS(1751), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - ACTIONS(1681), 25, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, @@ -112142,7 +109111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, @@ -112158,18 +109130,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109086] = 3, + [108333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 6, + ACTIONS(1753), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1705), 31, + ACTIONS(1751), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112201,18 +109173,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109132] = 3, + [108379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 6, + ACTIONS(1749), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 31, + ACTIONS(1747), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112244,86 +109216,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109178] = 10, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, + [108425] = 7, + ACTIONS(2165), 1, + sym_isMutableFlag, + STATE(1236), 1, + sym_dict_expr, + STATE(1617), 1, aux_sym_comparison_operator_repeat1, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1316), 6, - anon_sym_EQ, + ACTIONS(690), 5, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1318), 24, - anon_sym_DOT, - 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_PLUS_EQ, - anon_sym_then, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [109238] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1797), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1795), 31, + ACTIONS(692), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -112337,36 +109263,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109284] = 3, + [108479] = 7, + ACTIONS(2165), 1, + sym_isMutableFlag, + STATE(1236), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2164), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 6, - anon_sym_EQ, + ACTIONS(690), 5, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 31, + ACTIONS(692), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -112380,81 +109310,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109330] = 6, - ACTIONS(2155), 1, - anon_sym_in, - ACTIONS(2183), 1, - anon_sym_not, - ACTIONS(2185), 1, + [108533] = 7, + ACTIONS(2167), 1, + anon_sym_and, + ACTIONS(2169), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1681), 29, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(916), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [109382] = 5, - ACTIONS(2165), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1467), 5, + ACTIONS(924), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(926), 23, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, anon_sym_DASH, @@ -112471,18 +109357,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109432] = 3, + [108587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 6, + ACTIONS(1745), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1777), 31, + ACTIONS(1743), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112514,81 +109400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109478] = 23, - ACTIONS(1348), 1, - anon_sym_EQ, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2189), 1, - anon_sym_PLUS, - ACTIONS(2191), 1, - anon_sym_DASH, - ACTIONS(2195), 1, - anon_sym_PIPE, - ACTIONS(2197), 1, - anon_sym_AMP, - ACTIONS(2199), 1, - anon_sym_CARET, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [108633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2193), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1346), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [109564] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1869), 6, + ACTIONS(1499), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 31, + ACTIONS(1497), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112620,40 +109443,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109610] = 8, - ACTIONS(2130), 1, - anon_sym_LBRACE, - ACTIONS(2132), 1, - sym_isMutableFlag, - STATE(1980), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2235), 1, - aux_sym_comparison_operator_repeat1, + [108679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(1503), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(1501), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112668,35 +109486,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109666] = 3, + [108725] = 6, + ACTIONS(2167), 1, + anon_sym_and, + ACTIONS(2169), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 6, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 31, + ACTIONS(916), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112711,18 +109532,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109712] = 3, + [108777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 6, + ACTIONS(1741), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 31, + ACTIONS(1739), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112754,35 +109575,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109758] = 3, + [108823] = 8, + ACTIONS(918), 1, + anon_sym_EQ, + ACTIONS(2167), 1, + anon_sym_and, + ACTIONS(2169), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 6, - anon_sym_EQ, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 31, + ACTIONS(916), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_QMARK_DOT, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(926), 19, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112797,18 +109623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109804] = 3, + [108879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 6, + ACTIONS(1737), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1675), 31, + ACTIONS(1735), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112840,35 +109666,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109850] = 3, + [108925] = 5, + ACTIONS(2169), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 6, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1068), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 31, + ACTIONS(1070), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112883,35 +109711,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109896] = 3, + [108975] = 5, + ACTIONS(2169), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 6, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 31, + ACTIONS(916), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112926,18 +109756,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109942] = 3, + [109025] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 6, + ACTIONS(1663), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1721), 31, + ACTIONS(1665), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112969,18 +109799,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109988] = 3, + [109071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 6, + ACTIONS(1759), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1763), 31, + ACTIONS(1761), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113012,35 +109842,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110034] = 3, + [109117] = 10, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2145), 1, + anon_sym_STAR_STAR, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 6, + ACTIONS(942), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1843), 31, + ACTIONS(944), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113054,39 +109892,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [109177] = 10, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2145), 1, + anon_sym_STAR_STAR, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - [110080] = 6, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2110), 1, - anon_sym_not, - ACTIONS(2112), 1, - anon_sym_PLUS, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 5, + ACTIONS(942), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(944), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113100,40 +109942,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [110132] = 6, - ACTIONS(2163), 1, - anon_sym_and, + [109237] = 7, ACTIONS(2165), 1, - anon_sym_PLUS, + sym_isMutableFlag, + STATE(1236), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2186), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1322), 5, - anon_sym_EQ, + ACTIONS(690), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1320), 28, + ACTIONS(692), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -113147,35 +109989,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110184] = 3, + [109291] = 8, + ACTIONS(2107), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + sym_isMutableFlag, + STATE(1990), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2186), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 6, - anon_sym_EQ, + ACTIONS(690), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 31, + ACTIONS(692), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113190,38 +110037,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110230] = 6, - ACTIONS(2163), 1, - anon_sym_and, - ACTIONS(2165), 1, - anon_sym_PLUS, + [109347] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 5, + ACTIONS(1689), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 28, + ACTIONS(1691), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113236,40 +110080,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110282] = 7, - ACTIONS(2161), 1, - sym_isMutableFlag, - STATE(1298), 1, - sym_dict_expr, - STATE(1651), 1, - aux_sym_comparison_operator_repeat1, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, + [109393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 5, + ACTIONS(1527), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(1525), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -113283,18 +110123,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110336] = 3, + [109439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 6, + ACTIONS(1531), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 31, + ACTIONS(1529), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113326,18 +110166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110382] = 3, + [109485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 6, + ACTIONS(1813), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1601), 31, + ACTIONS(1815), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113369,80 +110209,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110428] = 22, - ACTIONS(1225), 1, - anon_sym_EQ, + [109531] = 10, + ACTIONS(2167), 1, + anon_sym_and, + ACTIONS(2169), 1, + anon_sym_PLUS, + ACTIONS(2171), 1, + anon_sym_as, ACTIONS(2173), 1, - anon_sym_LPAREN, + anon_sym_if, ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2189), 1, - anon_sym_PLUS, - ACTIONS(2191), 1, - anon_sym_DASH, - ACTIONS(2195), 1, - anon_sym_PIPE, - ACTIONS(2197), 1, - anon_sym_AMP, - ACTIONS(2199), 1, - anon_sym_CARET, - ACTIONS(2205), 1, - anon_sym_not, - ACTIONS(2209), 1, - anon_sym_is, - STATE(1299), 1, - sym_argument_list, - STATE(2206), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 2, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1243), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1241), 23, + anon_sym_COLON, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2207), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2203), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - [110512] = 3, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [109591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 6, + ACTIONS(1535), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 31, + ACTIONS(1533), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113474,101 +110302,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110558] = 23, - ACTIONS(1426), 1, - anon_sym_EQ, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2173), 1, + [109637] = 12, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2145), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2189), 1, - anon_sym_PLUS, - ACTIONS(2191), 1, - anon_sym_DASH, - ACTIONS(2195), 1, - anon_sym_PIPE, - ACTIONS(2197), 1, - anon_sym_AMP, - ACTIONS(2199), 1, - anon_sym_CARET, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2187), 2, + ACTIONS(2143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2153), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1424), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [110644] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1847), 6, + ACTIONS(942), 4, anon_sym_EQ, - anon_sym_STAR, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1849), 31, + ACTIONS(944), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -113579,19 +110354,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [110690] = 3, + [109701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 6, + ACTIONS(1835), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 31, + ACTIONS(1833), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113623,129 +110397,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110736] = 3, + [109747] = 17, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2145), 1, + anon_sym_STAR_STAR, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2149), 1, + anon_sym_PLUS, + ACTIONS(2151), 1, + anon_sym_DASH, + ACTIONS(2157), 1, + anon_sym_AMP, + ACTIONS(2159), 1, + anon_sym_CARET, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 6, - anon_sym_EQ, + ACTIONS(2143), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(2153), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2161), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(942), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 31, + ACTIONS(944), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_then, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [110782] = 5, - ACTIONS(2165), 1, + [109821] = 16, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2145), 1, + anon_sym_STAR_STAR, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2149), 1, anon_sym_PLUS, + ACTIONS(2151), 1, + anon_sym_DASH, + ACTIONS(2159), 1, + anon_sym_CARET, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1447), 5, - anon_sym_EQ, + ACTIONS(2143), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2153), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2161), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(942), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 29, + ACTIONS(944), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [110832] = 9, - ACTIONS(1469), 1, - sym_string_start, - ACTIONS(1975), 1, - anon_sym_LBRACE, - ACTIONS(1977), 1, - sym_isMutableFlag, - STATE(1416), 1, - sym_dict_expr, - STATE(2109), 1, - aux_sym_comparison_operator_repeat1, - STATE(2307), 1, - aux_sym_dotted_name_repeat1, + [109893] = 6, + ACTIONS(2167), 1, + anon_sym_and, + ACTIONS(2169), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1078), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 27, + ACTIONS(1080), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113760,18 +110556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110890] = 3, + [109945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 6, + ACTIONS(1669), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 31, + ACTIONS(1671), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113803,39 +110599,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110936] = 14, - ACTIONS(2173), 1, + [109991] = 10, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2145), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2189), 1, - anon_sym_PLUS, - ACTIONS(2191), 1, - anon_sym_DASH, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 2, + ACTIONS(936), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2193), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1360), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 21, + ACTIONS(938), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113847,6 +110636,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -113857,157 +110649,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111004] = 15, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2189), 1, - anon_sym_PLUS, - ACTIONS(2191), 1, - anon_sym_DASH, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [110051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 2, + ACTIONS(1539), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2193), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1360), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 19, + ACTIONS(1537), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111074] = 16, - ACTIONS(2173), 1, + anon_sym_QMARK_LBRACK, + [110097] = 22, + ACTIONS(880), 1, + anon_sym_EQ, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2145), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2149), 1, anon_sym_PLUS, - ACTIONS(2191), 1, + ACTIONS(2151), 1, anon_sym_DASH, - ACTIONS(2199), 1, + ACTIONS(2155), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, + anon_sym_AMP, + ACTIONS(2159), 1, anon_sym_CARET, - STATE(1299), 1, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2179), 1, + anon_sym_not, + ACTIONS(2183), 1, + anon_sym_is, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2155), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 2, + ACTIONS(2143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2153), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 2, + ACTIONS(2161), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1360), 3, + ACTIONS(2181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2177), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + [110181] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1831), 6, anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 18, + ACTIONS(1829), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111146] = 17, - ACTIONS(2173), 1, + anon_sym_QMARK_LBRACK, + [110227] = 15, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2145), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2149), 1, anon_sym_PLUS, - ACTIONS(2191), 1, + ACTIONS(2151), 1, anon_sym_DASH, - ACTIONS(2197), 1, - anon_sym_AMP, - ACTIONS(2199), 1, - anon_sym_CARET, - STATE(1299), 1, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 2, + ACTIONS(2143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2153), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 2, + ACTIONS(2161), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1360), 3, + ACTIONS(942), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 17, + ACTIONS(944), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114020,41 +110845,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_then, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111220] = 12, - ACTIONS(2173), 1, + [110297] = 14, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2145), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2149), 1, + anon_sym_PLUS, + ACTIONS(2151), 1, + anon_sym_DASH, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 2, + ACTIONS(2143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2153), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1360), 4, + ACTIONS(942), 3, anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 22, + ACTIONS(944), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114066,7 +110896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -114077,43 +110906,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111284] = 10, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [110365] = 5, + ACTIONS(2135), 1, + anon_sym_in, + ACTIONS(2185), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 6, + ACTIONS(1681), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 24, + ACTIONS(1683), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_in, - anon_sym_not, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -114127,18 +110950,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111344] = 3, + anon_sym_QMARK_LBRACK, + [110415] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 6, + ACTIONS(1827), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1857), 31, + ACTIONS(1825), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114170,18 +110994,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111390] = 3, + [110461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 6, + ACTIONS(1673), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1861), 31, + ACTIONS(1675), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114213,18 +111037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111436] = 3, + [110507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 6, + ACTIONS(1823), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 31, + ACTIONS(1821), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114256,43 +111080,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111482] = 10, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [110553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 6, + ACTIONS(1819), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 24, + ACTIONS(1817), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -114306,80 +111122,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111542] = 22, - ACTIONS(1225), 1, - anon_sym_EQ, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2177), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2189), 1, - anon_sym_PLUS, - ACTIONS(2191), 1, - anon_sym_DASH, - ACTIONS(2195), 1, - anon_sym_PIPE, - ACTIONS(2197), 1, - anon_sym_AMP, - ACTIONS(2199), 1, - anon_sym_CARET, - ACTIONS(2205), 1, - anon_sym_not, - ACTIONS(2209), 1, - anon_sym_is, - STATE(1299), 1, - sym_argument_list, - STATE(1475), 1, - aux_sym_comparison_operator_repeat1, + [110599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 2, + ACTIONS(1733), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2193), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2201), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2207), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2203), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 9, + ACTIONS(1731), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, - [111626] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [110645] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 6, + ACTIONS(1677), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1865), 31, + ACTIONS(1679), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114411,23 +111209,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111672] = 5, - ACTIONS(2165), 1, + [110691] = 8, + ACTIONS(2167), 1, + anon_sym_and, + ACTIONS(2169), 1, anon_sym_PLUS, + ACTIONS(2175), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1432), 5, + ACTIONS(1199), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1430), 29, - anon_sym_DOT, + ACTIONS(1197), 25, anon_sym_as, anon_sym_if, anon_sym_COLON, @@ -114436,10 +111240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, anon_sym_DASH, @@ -114456,40 +111257,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111722] = 8, - ACTIONS(1441), 1, - anon_sym_EQ, - ACTIONS(2163), 1, - anon_sym_and, - ACTIONS(2165), 1, - anon_sym_PLUS, + [110747] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 4, + ACTIONS(1713), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 9, + ACTIONS(1711), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1475), 19, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -114504,18 +111300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111778] = 3, + [110793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 6, + ACTIONS(1729), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1709), 31, + ACTIONS(1727), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114547,37 +111343,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111824] = 5, - ACTIONS(2165), 1, - anon_sym_PLUS, + [110839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 5, + ACTIONS(1717), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(1715), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -114592,81 +111386,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111874] = 23, - ACTIONS(1410), 1, + [110885] = 23, + ACTIONS(1122), 1, anon_sym_EQ, - ACTIONS(2076), 1, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2056), 1, anon_sym_is, - ACTIONS(2173), 1, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2145), 1, anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2189), 1, + ACTIONS(2149), 1, anon_sym_PLUS, - ACTIONS(2191), 1, + ACTIONS(2151), 1, anon_sym_DASH, - ACTIONS(2195), 1, + ACTIONS(2155), 1, anon_sym_PIPE, - ACTIONS(2197), 1, + ACTIONS(2157), 1, anon_sym_AMP, - ACTIONS(2199), 1, + ACTIONS(2159), 1, anon_sym_CARET, - STATE(1299), 1, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 2, + ACTIONS(2143), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2153), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2201), 2, + ACTIONS(2161), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1408), 4, + ACTIONS(1124), 4, anon_sym_COLON, anon_sym_else, anon_sym_PLUS_EQ, anon_sym_then, - ACTIONS(1223), 5, + ACTIONS(910), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(1354), 5, + [110971] = 23, + ACTIONS(1152), 1, + anon_sym_EQ, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2145), 1, + anon_sym_STAR_STAR, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2149), 1, + anon_sym_PLUS, + ACTIONS(2151), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, + anon_sym_AMP, + ACTIONS(2159), 1, + anon_sym_CARET, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(888), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2143), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2153), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2161), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1154), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(910), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [111960] = 3, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [111057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 6, + ACTIONS(1721), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 31, + ACTIONS(1719), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114698,85 +111555,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112006] = 5, + [111103] = 22, + ACTIONS(880), 1, + anon_sym_EQ, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2145), 1, + anon_sym_STAR_STAR, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2149), 1, + anon_sym_PLUS, + ACTIONS(2151), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, + anon_sym_AMP, + ACTIONS(2159), 1, + anon_sym_CARET, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2179), 1, + anon_sym_not, + ACTIONS(2183), 1, + anon_sym_is, + STATE(1211), 1, + sym_argument_list, + STATE(1440), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(1683), 4, + ACTIONS(2143), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2153), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2161), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2181), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 12, + ACTIONS(2177), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - ACTIONS(1681), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [112056] = 7, - ACTIONS(2161), 1, - sym_isMutableFlag, - STATE(1298), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2217), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_then, + [111187] = 5, + ACTIONS(2169), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 5, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1072), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 28, + ACTIONS(1074), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -114790,36 +111662,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112110] = 4, - ACTIONS(2211), 1, - anon_sym_DASH_GT, + [111237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1420), 7, + ACTIONS(1725), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1418), 28, + ACTIONS(1723), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -114833,28 +111705,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112157] = 4, - ACTIONS(2213), 1, - anon_sym_DASH_GT, + [111283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 6, + ACTIONS(1543), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 29, + ACTIONS(1541), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -114862,7 +111733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -114876,44 +111748,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112204] = 8, - ACTIONS(2205), 1, - anon_sym_not, - ACTIONS(2209), 1, - anon_sym_is, - STATE(1476), 1, + [111329] = 8, + ACTIONS(2107), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + sym_isMutableFlag, + STATE(1819), 1, aux_sym_comparison_operator_repeat1, + STATE(1990), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2207), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1225), 4, - anon_sym_EQ, + ACTIONS(690), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2203), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(692), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -114922,56 +111790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [112259] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2215), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2217), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [112304] = 3, + [111385] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2219), 12, + ACTIONS(2189), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -114982,7 +111813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2221), 24, + ACTIONS(2187), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -115007,22 +111838,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [112349] = 5, - ACTIONS(2223), 1, - anon_sym_PIPE, - STATE(1427), 1, + [111430] = 5, + ACTIONS(2191), 1, + anon_sym_EQ, + STATE(1387), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 6, - anon_sym_EQ, + ACTIONS(1362), 5, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 28, + ACTIONS(1364), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115041,6 +111871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -115051,63 +111882,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112398] = 4, - ACTIONS(2226), 1, - anon_sym_DASH_GT, + [111479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 7, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2195), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1412), 28, + anon_sym_TILDE, + sym_float, + ACTIONS(2193), 24, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COLON, + anon_sym_elif, anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [112445] = 4, - STATE(1441), 1, - aux_sym_union_type_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [111524] = 4, + ACTIONS(2197), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 6, + ACTIONS(1311), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 29, + ACTIONS(1313), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115123,7 +111954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -115137,40 +111967,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112492] = 5, - ACTIONS(2228), 1, - anon_sym_PIPE, - STATE(1430), 1, + [111571] = 4, + STATE(1436), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 5, + ACTIONS(1259), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 29, + ACTIONS(1261), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -115181,13 +112010,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112541] = 3, + [111618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2231), 12, + ACTIONS(2201), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -115198,7 +112027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2233), 24, + ACTIONS(2199), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -115223,70 +112052,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [112586] = 20, - ACTIONS(2235), 1, - anon_sym_LPAREN, - ACTIONS(2237), 1, - anon_sym_LBRACK, - ACTIONS(2243), 1, - anon_sym_STAR_STAR, - ACTIONS(2245), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_not, - ACTIONS(2253), 1, - anon_sym_PIPE, - ACTIONS(2255), 1, - anon_sym_AMP, - ACTIONS(2257), 1, - anon_sym_CARET, - ACTIONS(2263), 1, - anon_sym_is, - ACTIONS(2265), 1, - anon_sym_QMARK_LBRACK, - STATE(1577), 1, - aux_sym_comparison_operator_repeat1, - STATE(1646), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2241), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2251), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2261), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2239), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [112665] = 3, + [111663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2267), 12, + ACTIONS(2203), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -115299,7 +112069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2269), 24, + ACTIONS(2205), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -115324,218 +112094,143 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [112710] = 8, - ACTIONS(2271), 1, - anon_sym_and, - ACTIONS(2273), 1, - anon_sym_or, - ACTIONS(2275), 1, - anon_sym_PLUS, + [111708] = 14, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2209), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2215), 1, + anon_sym_QMARK_DOT, + ACTIONS(2223), 1, + anon_sym_QMARK_LBRACK, + STATE(1730), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1501), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1503), 25, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_not, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2217), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2219), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [112765] = 10, - ACTIONS(2271), 1, - anon_sym_and, - ACTIONS(2273), 1, - anon_sym_or, - ACTIONS(2275), 1, - anon_sym_PLUS, - ACTIONS(2277), 1, + ACTIONS(944), 19, + anon_sym_DOT, anon_sym_as, - ACTIONS(2279), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1390), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1388), 23, anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, anon_sym_not, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [111775] = 15, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2209), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2215), 1, + anon_sym_QMARK_DOT, + ACTIONS(2223), 1, anon_sym_QMARK_LBRACK, - [112824] = 4, - STATE(1441), 1, - aux_sym_union_type_repeat1, + ACTIONS(2225), 1, + anon_sym_CARET, + STATE(1730), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2217), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2219), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [112871] = 4, - STATE(1442), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1471), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1469), 30, + ACTIONS(944), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [112918] = 4, - ACTIONS(2281), 1, - anon_sym_DASH_GT, + [111844] = 4, + STATE(1401), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 7, + ACTIONS(1323), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 28, + ACTIONS(1325), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -115549,99 +112244,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112965] = 21, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2235), 1, + [111891] = 12, + ACTIONS(2207), 1, anon_sym_LPAREN, - ACTIONS(2237), 1, + ACTIONS(2209), 1, anon_sym_LBRACK, - ACTIONS(2243), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2245), 1, + ACTIONS(2215), 1, anon_sym_QMARK_DOT, - ACTIONS(2253), 1, - anon_sym_PIPE, - ACTIONS(2255), 1, - anon_sym_AMP, - ACTIONS(2257), 1, - anon_sym_CARET, - ACTIONS(2265), 1, + ACTIONS(2223), 1, anon_sym_QMARK_LBRACK, - STATE(1646), 1, + STATE(1730), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 2, + ACTIONS(2211), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2251), 2, + ACTIONS(2219), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1408), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [113046] = 5, - ACTIONS(2283), 1, - anon_sym_EQ, - STATE(1490), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1340), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1342), 30, + ACTIONS(944), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -115652,36 +112295,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [111954] = 10, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2209), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2215), 1, + anon_sym_QMARK_DOT, + ACTIONS(2223), 1, anon_sym_QMARK_LBRACK, - [113095] = 4, - STATE(1427), 1, - aux_sym_union_type_repeat1, + STATE(1730), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 6, - anon_sym_EQ, + ACTIONS(942), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1338), 29, + ACTIONS(944), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -115695,32 +112344,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [112013] = 10, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2209), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2215), 1, + anon_sym_QMARK_DOT, + ACTIONS(2223), 1, anon_sym_QMARK_LBRACK, - [113142] = 4, - STATE(1443), 1, - aux_sym_dotted_name_repeat1, + STATE(1730), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1479), 5, - anon_sym_EQ, + ACTIONS(942), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1477), 30, + ACTIONS(944), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -115738,23 +112393,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [113189] = 5, - STATE(1443), 1, - aux_sym_dotted_name_repeat1, + [112072] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2285), 2, + ACTIONS(2227), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1362), 5, - anon_sym_EQ, + STATE(1396), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 28, + ACTIONS(1438), 28, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -115783,20 +112437,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113238] = 4, - STATE(1441), 1, + [112121] = 4, + STATE(1387), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1314), 6, + ACTIONS(1082), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 29, + ACTIONS(1084), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115826,13 +112480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113285] = 3, + [112168] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2267), 12, - sym__dedent, + ACTIONS(2230), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -115843,7 +112497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2269), 24, + ACTIONS(2232), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -115868,36 +112522,36 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [113330] = 4, - STATE(1441), 1, - aux_sym_union_type_repeat1, + [112213] = 4, + ACTIONS(2234), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 6, + ACTIONS(1311), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 29, + ACTIONS(1313), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -115911,38 +112565,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113377] = 6, - ACTIONS(2271), 1, - anon_sym_and, - ACTIONS(2275), 1, - anon_sym_PLUS, + [112260] = 4, + ACTIONS(2236), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, + ACTIONS(1082), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 28, + ACTIONS(1084), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -115956,38 +112608,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113428] = 7, - ACTIONS(2271), 1, - anon_sym_and, - ACTIONS(2275), 1, - anon_sym_PLUS, + [112307] = 4, + STATE(1402), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 4, + ACTIONS(1259), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 9, + ACTIONS(1261), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1475), 19, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116002,22 +112651,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113481] = 5, + [112354] = 5, + ACTIONS(2238), 1, + anon_sym_PIPE, + STATE(1402), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1449), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1372), 4, + ACTIONS(1188), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1377), 28, + ACTIONS(1190), 29, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -116028,6 +112677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -116035,7 +112685,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -116046,80 +112695,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113530] = 3, + [112403] = 8, + ACTIONS(2244), 1, + anon_sym_not, + ACTIONS(2250), 1, + anon_sym_is, + STATE(1403), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2219), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(2247), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1481), 4, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2221), 24, - anon_sym_import, + anon_sym_SLASH, + ACTIONS(2241), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1483), 22, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_elif, + anon_sym_COLON, anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113575] = 10, - ACTIONS(2235), 1, anon_sym_LPAREN, - ACTIONS(2237), 1, anon_sym_LBRACK, - ACTIONS(2243), 1, anon_sym_STAR_STAR, - ACTIONS(2245), 1, anon_sym_QMARK_DOT, - ACTIONS(2265), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK_LBRACK, - STATE(1646), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [112458] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 4, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1327), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 25, + ACTIONS(1329), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -116137,36 +112784,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [113634] = 5, - ACTIONS(2291), 1, - anon_sym_EQ, - STATE(1441), 1, - aux_sym_union_type_repeat1, + anon_sym_QMARK_LBRACK, + [112505] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 5, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(874), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1342), 29, + ACTIONS(876), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116181,45 +112828,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113683] = 8, - ACTIONS(2296), 1, - anon_sym_not, - ACTIONS(2302), 1, - anon_sym_is, - STATE(1453), 1, - aux_sym_comparison_operator_repeat1, + [112552] = 4, + ACTIONS(2253), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2299), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 4, + ACTIONS(1229), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2293), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1569), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1231), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -116227,85 +112865,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [113738] = 3, + [112599] = 8, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_isMutableFlag, + STATE(1802), 1, + sym_dict_expr, + STATE(2174), 1, + aux_sym_comparison_operator_repeat1, + STATE(2192), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2231), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2233), 24, - anon_sym_import, + ACTIONS(690), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(692), 27, + sym__newline, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [113783] = 10, - ACTIONS(2235), 1, anon_sym_LPAREN, - ACTIONS(2237), 1, anon_sym_LBRACK, - ACTIONS(2243), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2245), 1, anon_sym_QMARK_DOT, - ACTIONS(2265), 1, - anon_sym_QMARK_LBRACK, - STATE(1646), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [112654] = 7, + ACTIONS(2255), 1, + anon_sym_and, + ACTIONS(2257), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 4, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 25, + ACTIONS(916), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_in, anon_sym_for, - anon_sym_not, - anon_sym_and, + anon_sym_QMARK_DOT, anon_sym_or, - anon_sym_PLUS, + ACTIONS(926), 19, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_not, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116319,34 +112963,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [113842] = 12, - ACTIONS(2235), 1, + anon_sym_QMARK_LBRACK, + [112707] = 10, + ACTIONS(2207), 1, anon_sym_LPAREN, - ACTIONS(2237), 1, + ACTIONS(2209), 1, anon_sym_LBRACK, - ACTIONS(2243), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2245), 1, + ACTIONS(2215), 1, anon_sym_QMARK_DOT, - ACTIONS(2265), 1, + ACTIONS(2223), 1, anon_sym_QMARK_LBRACK, - STATE(1646), 1, + STATE(1730), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2241), 2, + ACTIONS(936), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2251), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 23, + anon_sym_LT, + anon_sym_GT, + ACTIONS(938), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116360,6 +113001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -116370,210 +113013,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [113905] = 16, - ACTIONS(2235), 1, + [112766] = 4, + STATE(1401), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1082), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1084), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(2237), 1, anon_sym_LBRACK, - ACTIONS(2243), 1, + anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2245), 1, + anon_sym_for, anon_sym_QMARK_DOT, - ACTIONS(2255), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(2265), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - STATE(1646), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [112813] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2241), 2, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(874), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2251), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(876), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [113976] = 15, - ACTIONS(2235), 1, + anon_sym_QMARK_LBRACK, + [112860] = 20, + ACTIONS(2207), 1, anon_sym_LPAREN, - ACTIONS(2237), 1, + ACTIONS(2209), 1, anon_sym_LBRACK, - ACTIONS(2243), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2245), 1, + ACTIONS(2215), 1, anon_sym_QMARK_DOT, - ACTIONS(2257), 1, + ACTIONS(2223), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2225), 1, anon_sym_CARET, + ACTIONS(2261), 1, + anon_sym_not, + ACTIONS(2263), 1, + anon_sym_PIPE, ACTIONS(2265), 1, - anon_sym_QMARK_LBRACK, - STATE(1646), 1, - sym_argument_list, - STATE(2238), 1, + anon_sym_AMP, + ACTIONS(2269), 1, + anon_sym_is, + STATE(1530), 1, aux_sym_comparison_operator_repeat1, + STATE(1730), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2241), 2, + ACTIONS(2211), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2249), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2251), 2, + ACTIONS(2219), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2259), 2, + ACTIONS(2221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1358), 18, + ACTIONS(2267), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2259), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_in, anon_sym_for, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [114045] = 14, - ACTIONS(2235), 1, + [112939] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2189), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2237), 1, anon_sym_LBRACK, - ACTIONS(2243), 1, - anon_sym_STAR_STAR, - ACTIONS(2245), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2265), 1, - anon_sym_QMARK_LBRACK, - STATE(1646), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2187), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [112984] = 4, + ACTIONS(2271), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2241), 2, + ACTIONS(1082), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2249), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2251), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 19, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1084), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [114112] = 13, - ACTIONS(2235), 1, - anon_sym_LPAREN, - ACTIONS(2237), 1, - anon_sym_LBRACK, - ACTIONS(2243), 1, - anon_sym_STAR_STAR, - ACTIONS(2245), 1, - anon_sym_QMARK_DOT, - ACTIONS(2265), 1, anon_sym_QMARK_LBRACK, - STATE(1646), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [113031] = 4, + STATE(1428), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2241), 2, + ACTIONS(1024), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2249), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2251), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1026), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -116584,11 +113285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [114177] = 3, + anon_sym_QMARK_LBRACK, + [113078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2215), 12, + ACTIONS(2275), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -116601,7 +113303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2217), 24, + ACTIONS(2273), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -116626,198 +113328,175 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [114222] = 20, - ACTIONS(2235), 1, + [113123] = 13, + ACTIONS(2207), 1, anon_sym_LPAREN, - ACTIONS(2237), 1, + ACTIONS(2209), 1, anon_sym_LBRACK, - ACTIONS(2243), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2245), 1, + ACTIONS(2215), 1, anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_not, - ACTIONS(2253), 1, - anon_sym_PIPE, - ACTIONS(2255), 1, - anon_sym_AMP, - ACTIONS(2257), 1, - anon_sym_CARET, - ACTIONS(2263), 1, - anon_sym_is, - ACTIONS(2265), 1, + ACTIONS(2223), 1, anon_sym_QMARK_LBRACK, - STATE(1646), 1, + STATE(1730), 1, sym_argument_list, - STATE(2212), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2241), 2, + ACTIONS(942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2211), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2249), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2251), 2, + ACTIONS(2219), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2261), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2239), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 9, + ACTIONS(944), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_in, anon_sym_for, + anon_sym_not, anon_sym_and, anon_sym_or, - [114301] = 21, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2235), 1, - anon_sym_LPAREN, - ACTIONS(2237), 1, - anon_sym_LBRACK, - ACTIONS(2243), 1, - anon_sym_STAR_STAR, - ACTIONS(2245), 1, - anon_sym_QMARK_DOT, - ACTIONS(2253), 1, anon_sym_PIPE, - ACTIONS(2255), 1, anon_sym_AMP, - ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(2265), 1, - anon_sym_QMARK_LBRACK, - STATE(1646), 1, - sym_argument_list, - STATE(2238), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [113188] = 8, + ACTIONS(2179), 1, + anon_sym_not, + ACTIONS(2183), 1, + anon_sym_is, + STATE(1435), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(2181), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 2, + ACTIONS(880), 4, + anon_sym_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2249), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2251), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1346), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, + anon_sym_SLASH, + ACTIONS(2177), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [114382] = 21, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2235), 1, + ACTIONS(948), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(2237), 1, anon_sym_LBRACK, - ACTIONS(2243), 1, anon_sym_STAR_STAR, - ACTIONS(2245), 1, anon_sym_QMARK_DOT, - ACTIONS(2253), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2255), 1, anon_sym_AMP, - ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(2265), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK_LBRACK, - STATE(1646), 1, + [113243] = 16, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2209), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2215), 1, + anon_sym_QMARK_DOT, + ACTIONS(2223), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2225), 1, + anon_sym_CARET, + ACTIONS(2265), 1, + anon_sym_AMP, + STATE(1730), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2241), 2, + ACTIONS(2211), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2249), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2251), 2, + ACTIONS(2219), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2259), 2, + ACTIONS(2221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1424), 4, + ACTIONS(944), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_in, anon_sym_for, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [114463] = 4, + anon_sym_is, + [113314] = 5, + ACTIONS(2257), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1334), 4, + ACTIONS(1072), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1332), 30, + ACTIONS(1074), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116833,7 +113512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -116848,13 +113526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114510] = 3, + [113363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2305), 12, + ACTIONS(2230), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -116865,7 +113543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2307), 24, + ACTIONS(2232), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -116890,23 +113568,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [114555] = 6, - ACTIONS(2271), 1, - anon_sym_and, - ACTIONS(2275), 1, + [113408] = 5, + ACTIONS(2257), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1322), 4, + ACTIONS(918), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1320), 28, + ACTIONS(916), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116920,6 +113596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_DASH, anon_sym_PERCENT, @@ -116935,19 +113612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114606] = 4, + [113457] = 4, + STATE(1401), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1219), 4, + ACTIONS(1342), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1221), 30, + ACTIONS(1344), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116978,19 +113655,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114653] = 4, + [113504] = 6, + ACTIONS(2255), 1, + anon_sym_and, + ACTIONS(2257), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1219), 4, + ACTIONS(918), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1221), 30, + ACTIONS(916), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117004,9 +113685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -117021,29 +113700,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114700] = 7, - ACTIONS(2271), 1, - anon_sym_and, - ACTIONS(2275), 1, + [113555] = 5, + ACTIONS(2257), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1473), 4, + ACTIONS(1068), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 5, + ACTIONS(1070), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1475), 23, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, @@ -117052,7 +113726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -117067,36 +113744,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114753] = 5, - ACTIONS(2275), 1, - anon_sym_PLUS, + [113604] = 4, + STATE(1403), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1467), 4, + ACTIONS(1563), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 29, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -117111,77 +113787,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114802] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2311), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2309), 24, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [114847] = 4, + [113651] = 4, + STATE(1387), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1449), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1328), 4, + ACTIONS(1188), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1330), 30, + ACTIONS(1190), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -117196,19 +113830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114894] = 4, + [113698] = 4, + STATE(1431), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1272), 4, + ACTIONS(1020), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1270), 30, + ACTIONS(1022), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117239,13 +113873,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114941] = 4, - STATE(1453), 1, + [113745] = 4, + STATE(1403), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 6, + ACTIONS(1563), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -117282,35 +113916,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114988] = 4, - STATE(1453), 1, - aux_sym_comparison_operator_repeat1, + [113792] = 7, + ACTIONS(2255), 1, + anon_sym_and, + ACTIONS(2257), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 6, - anon_sym_EQ, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 29, + ACTIONS(916), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(926), 23, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_not, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [113845] = 5, + STATE(1431), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2277), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(1374), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1379), 28, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -117325,20 +114006,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115035] = 4, - STATE(1453), 1, - aux_sym_comparison_operator_repeat1, + [113894] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2275), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2273), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [113939] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2201), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2199), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [113984] = 4, + STATE(1387), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 6, + ACTIONS(1342), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 29, + ACTIONS(1344), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117368,36 +114133,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115082] = 5, - ACTIONS(2275), 1, - anon_sym_PLUS, + [114031] = 4, + STATE(1403), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1447), 4, + ACTIONS(1563), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 29, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -117412,20 +114176,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115131] = 4, - STATE(1453), 1, - aux_sym_comparison_operator_repeat1, + [114078] = 5, + ACTIONS(2280), 1, + anon_sym_PIPE, + STATE(1436), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 6, + ACTIONS(1188), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 29, + ACTIONS(1190), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117444,7 +114210,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -117455,11 +114220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115178] = 3, + [114127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2311), 12, + ACTIONS(2195), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -117472,7 +114237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2309), 24, + ACTIONS(2193), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -117497,30 +114262,26 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [115223] = 8, - ACTIONS(1881), 1, - anon_sym_LBRACE, - ACTIONS(1883), 1, - sym_isMutableFlag, - STATE(1954), 1, - sym_dict_expr, - STATE(2221), 1, - aux_sym_comparison_operator_repeat1, - STATE(2244), 1, - aux_sym_dotted_name_repeat1, + [114172] = 4, + ACTIONS(2283), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(1229), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 27, - sym__newline, + ACTIONS(1231), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -117529,8 +114290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -117544,36 +114305,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115278] = 4, - ACTIONS(2313), 1, - anon_sym_DASH_GT, + [114219] = 4, + STATE(1387), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1420), 6, + ACTIONS(1323), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1418), 29, + ACTIONS(1325), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -117587,35 +114348,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115325] = 4, - STATE(1490), 1, - aux_sym_union_type_repeat1, + [114266] = 4, + STATE(1403), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 5, + ACTIONS(1563), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 30, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -117630,21 +114391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115372] = 5, - ACTIONS(2275), 1, + [114313] = 20, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2209), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2215), 1, + anon_sym_QMARK_DOT, + ACTIONS(2223), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2225), 1, + anon_sym_CARET, + ACTIONS(2261), 1, + anon_sym_not, + ACTIONS(2263), 1, + anon_sym_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP, + ACTIONS(2269), 1, + anon_sym_is, + STATE(1730), 1, + sym_argument_list, + STATE(2160), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2217), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2219), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2267), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2259), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 9, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [114392] = 4, + STATE(1401), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, + ACTIONS(1188), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(1190), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117660,6 +114478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -117674,21 +114493,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115421] = 5, - ACTIONS(2275), 1, - anon_sym_PLUS, + [114439] = 5, + ACTIONS(2285), 1, + anon_sym_EQ, + STATE(1401), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1432), 4, + ACTIONS(1362), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1430), 29, + ACTIONS(1364), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117704,6 +114522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -117718,103 +114537,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115470] = 10, - ACTIONS(2235), 1, + [114488] = 21, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2207), 1, anon_sym_LPAREN, - ACTIONS(2237), 1, + ACTIONS(2209), 1, anon_sym_LBRACK, - ACTIONS(2243), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2245), 1, + ACTIONS(2215), 1, anon_sym_QMARK_DOT, - ACTIONS(2265), 1, + ACTIONS(2223), 1, anon_sym_QMARK_LBRACK, - STATE(1646), 1, + ACTIONS(2225), 1, + anon_sym_CARET, + ACTIONS(2263), 1, + anon_sym_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP, + STATE(1730), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1316), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1318), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_for, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2219), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2221), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(882), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + ACTIONS(910), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [115529] = 4, - STATE(1490), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1265), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1263), 30, + ACTIONS(948), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115576] = 3, + [114569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2305), 12, + ACTIONS(2203), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -117827,7 +114614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2307), 24, + ACTIONS(2205), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -117852,62 +114639,79 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [115621] = 4, - STATE(1490), 1, - aux_sym_union_type_repeat1, + [114614] = 21, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2207), 1, + anon_sym_LPAREN, + ACTIONS(2209), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2215), 1, + anon_sym_QMARK_DOT, + ACTIONS(2223), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2225), 1, + anon_sym_CARET, + ACTIONS(2263), 1, + anon_sym_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP, + STATE(1730), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2211), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2219), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2221), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1154), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + ACTIONS(910), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [115668] = 4, - STATE(1430), 1, - aux_sym_union_type_repeat1, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [114695] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 5, - anon_sym_EQ, + STATE(1396), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(932), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1338), 30, + ACTIONS(934), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117938,20 +114742,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115715] = 4, - ACTIONS(2315), 1, - anon_sym_DASH_GT, + [114742] = 6, + ACTIONS(2255), 1, + anon_sym_and, + ACTIONS(2257), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 6, - anon_sym_EQ, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1078), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1412), 29, + ACTIONS(1080), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -117965,9 +114772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -117981,22 +114787,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115762] = 4, - STATE(1490), 1, - aux_sym_union_type_repeat1, + [114793] = 10, + ACTIONS(2255), 1, + anon_sym_and, + ACTIONS(2257), 1, + anon_sym_PLUS, + ACTIONS(2287), 1, + anon_sym_as, + ACTIONS(2289), 1, + anon_sym_if, + ACTIONS(2291), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1314), 5, - anon_sym_EQ, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1243), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1241), 23, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, @@ -118005,11 +114821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -118024,40 +114836,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115809] = 10, - ACTIONS(1318), 1, - anon_sym_LF, - ACTIONS(2317), 1, - anon_sym_LPAREN, - ACTIONS(2319), 1, - anon_sym_LBRACK, - ACTIONS(2321), 1, - anon_sym_STAR_STAR, - ACTIONS(2323), 1, - anon_sym_QMARK_DOT, - ACTIONS(2325), 1, - anon_sym_QMARK_LBRACK, - STATE(1839), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [114852] = 8, + ACTIONS(2255), 1, + anon_sym_and, + ACTIONS(2257), 1, + anon_sym_PLUS, + ACTIONS(2291), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1316), 27, + ACTIONS(525), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1199), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1197), 25, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118065,193 +114877,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, - [115867] = 21, - ACTIONS(2076), 1, + anon_sym_QMARK_LBRACK, + [114907] = 21, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2056), 1, anon_sym_is, - ACTIONS(2327), 1, + ACTIONS(2207), 1, anon_sym_LPAREN, - ACTIONS(2329), 1, + ACTIONS(2209), 1, anon_sym_LBRACK, - ACTIONS(2333), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2215), 1, anon_sym_QMARK_DOT, - ACTIONS(2341), 1, + ACTIONS(2223), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2225), 1, + anon_sym_CARET, + ACTIONS(2263), 1, anon_sym_PIPE, - ACTIONS(2343), 1, + ACTIONS(2265), 1, anon_sym_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - STATE(1867), 1, + STATE(1730), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 2, + ACTIONS(2211), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2337), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2339), 2, + ACTIONS(2219), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, + ACTIONS(2221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1424), 3, - sym__newline, + ACTIONS(1124), 4, anon_sym_COMMA, - anon_sym_else, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [115947] = 8, - ACTIONS(2005), 1, - anon_sym_LBRACE, - ACTIONS(2351), 1, - sym_isMutableFlag, - STATE(1298), 1, - sym_dict_expr, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, - STATE(2237), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(746), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(748), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + ACTIONS(910), 5, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [116001] = 10, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1316), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1318), 23, + ACTIONS(948), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_not, anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [116059] = 4, - ACTIONS(1412), 1, - anon_sym_LF, - ACTIONS(2355), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, + anon_sym_or, + [114988] = 4, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 33, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1354), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1356), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118259,94 +114980,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [116105] = 10, - ACTIONS(2173), 1, + [115035] = 19, + ACTIONS(948), 1, + anon_sym_LF, + ACTIONS(2293), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2301), 1, + anon_sym_STAR_STAR, + ACTIONS(2303), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2305), 1, + anon_sym_not, + ACTIONS(2309), 1, + anon_sym_PIPE, + ACTIONS(2311), 1, + anon_sym_AMP, + ACTIONS(2313), 1, + anon_sym_CARET, + ACTIONS(2317), 1, + anon_sym_is, + ACTIONS(2319), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, + STATE(1766), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + STATE(1903), 1, + sym_argument_list, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 5, - anon_sym_STAR, + ACTIONS(2307), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2299), 4, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1358), 23, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(880), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_not, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2297), 7, + anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [116163] = 10, - ACTIONS(2173), 1, + anon_sym_GT, + [115111] = 20, + ACTIONS(2321), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2323), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2329), 1, + anon_sym_STAR_STAR, + ACTIONS(2331), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2333), 1, + anon_sym_not, + ACTIONS(2339), 1, + anon_sym_PIPE, + ACTIONS(2341), 1, + anon_sym_AMP, + ACTIONS(2343), 1, + anon_sym_CARET, + ACTIONS(2349), 1, + anon_sym_is, + ACTIONS(2351), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - STATE(1299), 1, + STATE(1786), 1, sym_argument_list, - STATE(2238), 1, + STATE(2168), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 5, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2337), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2347), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2325), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [115189] = 4, + STATE(1492), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1342), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 23, + ACTIONS(1344), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -118363,36 +115142,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [116221] = 5, - ACTIONS(2357), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [115235] = 4, + STATE(1492), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, + ACTIONS(1323), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 28, - sym__newline, + ACTIONS(1325), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118406,47 +115185,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116269] = 12, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, + [115281] = 5, ACTIONS(2353), 1, - anon_sym_STAR_STAR, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PIPE, + STATE(1457), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 2, + ACTIONS(1188), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2361), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1360), 3, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 21, + ACTIONS(1190), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -118456,210 +115227,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [116331] = 17, - ACTIONS(2173), 1, + anon_sym_QMARK_LBRACK, + [115329] = 22, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, + ACTIONS(2358), 1, anon_sym_STAR_STAR, - ACTIONS(2363), 1, + ACTIONS(2360), 1, anon_sym_PLUS, - ACTIONS(2365), 1, + ACTIONS(2362), 1, anon_sym_DASH, - ACTIONS(2367), 1, + ACTIONS(2366), 1, + anon_sym_PIPE, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2369), 1, + ACTIONS(2370), 1, anon_sym_CARET, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 2, + ACTIONS(2356), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2361), 2, + ACTIONS(2364), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2371), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1358), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(882), 3, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LBRACE, + ACTIONS(910), 5, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [116403] = 16, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2363), 1, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [115411] = 5, + ACTIONS(2374), 1, anon_sym_PLUS, - ACTIONS(2365), 1, - anon_sym_DASH, - ACTIONS(2369), 1, - anon_sym_CARET, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2359), 2, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2361), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(916), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [116473] = 15, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2363), 1, - anon_sym_PLUS, - ACTIONS(2365), 1, - anon_sym_DASH, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [115459] = 4, + STATE(1492), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2359), 2, + ACTIONS(1188), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2361), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1190), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [116541] = 14, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2363), 1, - anon_sym_PLUS, - ACTIONS(2365), 1, - anon_sym_DASH, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [115505] = 4, + STATE(1506), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2359), 2, + ACTIONS(1188), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2361), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 20, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1190), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -118670,35 +115414,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [116607] = 4, - ACTIONS(3), 2, + anon_sym_QMARK_LBRACK, + [115551] = 7, + ACTIONS(916), 1, + anon_sym_LF, + ACTIONS(2376), 1, + anon_sym_and, + ACTIONS(2378), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1518), 2, + STATE(1499), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1328), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1330), 29, - sym__newline, + ACTIONS(918), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(924), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118706,27 +115452,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [116653] = 5, - ACTIONS(2357), 1, - anon_sym_PLUS, + [115603] = 4, + ACTIONS(2380), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1447), 4, + ACTIONS(1229), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 28, + ACTIONS(1231), 28, sym__newline, anon_sym_DOT, anon_sym_as, @@ -118741,7 +115488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118755,24 +115502,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116701] = 4, + [115649] = 4, + ACTIONS(2191), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1219), 4, + ACTIONS(1362), 5, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1221), 29, - sym__newline, + ACTIONS(1364), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, @@ -118782,7 +115528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -118797,41 +115544,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116747] = 10, - ACTIONS(2357), 1, + [115695] = 5, + ACTIONS(2374), 1, anon_sym_PLUS, - ACTIONS(2373), 1, - anon_sym_as, - ACTIONS(2375), 1, - anon_sym_if, - ACTIONS(2377), 1, - anon_sym_and, - ACTIONS(2379), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1390), 4, + ACTIONS(1068), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1388), 22, - sym__newline, + ACTIONS(1070), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_DASH, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118845,21 +115587,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116805] = 4, + [115743] = 5, + STATE(1466), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1219), 4, + ACTIONS(2382), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1374), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1221), 29, + ACTIONS(1379), 27, sym__newline, - anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -118868,7 +115612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -118887,34 +115630,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116851] = 4, + [115791] = 5, + ACTIONS(2101), 1, + anon_sym_in, + ACTIONS(2385), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1334), 4, + ACTIONS(1681), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1332), 29, - sym__newline, + ACTIONS(1683), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -118929,21 +115673,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116897] = 5, - ACTIONS(2357), 1, + [115839] = 5, + ACTIONS(2387), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1432), 4, + ACTIONS(1072), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1430), 28, + ACTIONS(1074), 28, sym__newline, anon_sym_DOT, anon_sym_as, @@ -118972,36 +115716,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116945] = 5, - ACTIONS(2381), 1, - anon_sym_EQ, - STATE(1621), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [115887] = 4, + ACTIONS(1084), 1, + anon_sym_LF, + ACTIONS(2389), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1342), 28, + ACTIONS(1082), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119009,85 +115750,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [116993] = 7, - ACTIONS(2357), 1, - anon_sym_PLUS, - ACTIONS(2377), 1, - anon_sym_and, - ACTIONS(3), 2, + [115933] = 19, + ACTIONS(948), 1, + anon_sym_LF, + ACTIONS(2293), 1, + anon_sym_LPAREN, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2301), 1, + anon_sym_STAR_STAR, + ACTIONS(2303), 1, + anon_sym_QMARK_DOT, + ACTIONS(2305), 1, + anon_sym_not, + ACTIONS(2309), 1, + anon_sym_PIPE, + ACTIONS(2311), 1, + anon_sym_AMP, + ACTIONS(2313), 1, + anon_sym_CARET, + ACTIONS(2317), 1, + anon_sym_is, + ACTIONS(2319), 1, + anon_sym_QMARK_LBRACK, + STATE(1903), 1, + sym_argument_list, + STATE(2175), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 4, + ACTIONS(2307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2299), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1439), 8, - sym__newline, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(880), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_and, anon_sym_or, - ACTIONS(1475), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2297), 7, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, + anon_sym_GT, + [116009] = 10, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - [117045] = 3, + ACTIONS(2358), 1, + anon_sym_STAR_STAR, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 5, - anon_sym_EQ, + ACTIONS(942), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 30, + ACTIONS(944), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119100,36 +115863,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [116067] = 10, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - [117089] = 4, - STATE(1529), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2358), 1, + anon_sym_STAR_STAR, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1471), 5, - anon_sym_EQ, + ACTIONS(942), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1469), 29, - sym__newline, + ACTIONS(944), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119142,35 +115911,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [117135] = 3, + [116125] = 7, + ACTIONS(2374), 1, + anon_sym_PLUS, + ACTIONS(2391), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 5, - anon_sym_EQ, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 30, + ACTIONS(916), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(926), 18, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119184,38 +115956,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117179] = 5, + [116177] = 12, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2358), 1, + anon_sym_STAR_STAR, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2383), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1518), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1372), 4, + ACTIONS(2356), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2364), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(942), 3, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1377), 27, - sym__newline, + ACTIONS(944), 21, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -119226,240 +116006,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [117227] = 22, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2173), 1, + [116239] = 17, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, + ACTIONS(2358), 1, anon_sym_STAR_STAR, - ACTIONS(2363), 1, + ACTIONS(2360), 1, anon_sym_PLUS, - ACTIONS(2365), 1, + ACTIONS(2362), 1, anon_sym_DASH, - ACTIONS(2367), 1, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2369), 1, + ACTIONS(2370), 1, anon_sym_CARET, - ACTIONS(2386), 1, - anon_sym_PIPE, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 2, + ACTIONS(2356), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2361), 2, + ACTIONS(2364), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2371), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1346), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - ACTIONS(1223), 5, + ACTIONS(944), 16, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [117309] = 22, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, anon_sym_is, - ACTIONS(2173), 1, + [116311] = 16, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, + ACTIONS(2358), 1, anon_sym_STAR_STAR, - ACTIONS(2363), 1, + ACTIONS(2360), 1, anon_sym_PLUS, - ACTIONS(2365), 1, + ACTIONS(2362), 1, anon_sym_DASH, - ACTIONS(2367), 1, - anon_sym_AMP, - ACTIONS(2369), 1, + ACTIONS(2370), 1, anon_sym_CARET, - ACTIONS(2386), 1, - anon_sym_PIPE, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2359), 2, + ACTIONS(2356), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2361), 2, + ACTIONS(2364), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2371), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1424), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [117391] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1615), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1617), 30, + ACTIONS(944), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [116381] = 15, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - [117435] = 3, + ACTIONS(2358), 1, + anon_sym_STAR_STAR, + ACTIONS(2360), 1, + anon_sym_PLUS, + ACTIONS(2362), 1, + anon_sym_DASH, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1593), 30, + ACTIONS(2356), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2364), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2372), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [116449] = 14, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - [117479] = 4, + ACTIONS(2358), 1, + anon_sym_STAR_STAR, + ACTIONS(2360), 1, + anon_sym_PLUS, + ACTIONS(2362), 1, + anon_sym_DASH, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1272), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1270), 29, - sym__newline, + ACTIONS(2356), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2364), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(944), 20, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -119470,21 +116220,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [117525] = 5, - ACTIONS(2388), 1, - anon_sym_EQ, - STATE(1542), 1, - aux_sym_union_type_repeat1, + [116515] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 4, + STATE(1557), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(932), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1342), 29, + ACTIONS(934), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -119514,39 +116262,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117573] = 8, - ACTIONS(2357), 1, + [116561] = 10, + ACTIONS(2374), 1, anon_sym_PLUS, - ACTIONS(2377), 1, + ACTIONS(2391), 1, anon_sym_and, - ACTIONS(2379), 1, + ACTIONS(2393), 1, + anon_sym_as, + ACTIONS(2395), 1, + anon_sym_if, + ACTIONS(2397), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1501), 4, + ACTIONS(1243), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1503), 24, - sym__newline, - anon_sym_as, - anon_sym_if, + ACTIONS(1241), 21, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_not, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119560,36 +116310,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117627] = 5, - ACTIONS(2357), 1, + [116619] = 8, + ACTIONS(2374), 1, anon_sym_PLUS, + ACTIONS(2391), 1, + anon_sym_and, + ACTIONS(2397), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1467), 4, + ACTIONS(1199), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 28, - sym__newline, - anon_sym_DOT, + ACTIONS(1197), 23, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119603,15 +116356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117675] = 4, - ACTIONS(1418), 1, + [116673] = 5, + ACTIONS(1190), 1, anon_sym_LF, - ACTIONS(2390), 1, - anon_sym_DASH_GT, + ACTIONS(2399), 1, + anon_sym_PIPE, + STATE(1482), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1420), 33, + ACTIONS(1188), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -119632,7 +116387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -119645,42 +116399,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [117721] = 10, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_QMARK_DOT, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - STATE(1867), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [116721] = 4, + ACTIONS(1231), 1, + anon_sym_LF, + ACTIONS(2402), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1358), 24, - sym__newline, + ACTIONS(1229), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119688,40 +116433,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, - [117779] = 4, - STATE(1600), 1, - aux_sym_dotted_name_repeat1, + anon_sym_QMARK_LBRACK, + [116767] = 5, + ACTIONS(2374), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1479), 5, - anon_sym_EQ, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1072), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1477), 29, - sym__newline, + ACTIONS(1074), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119735,17 +116484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117825] = 3, + [116815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 5, + ACTIONS(1539), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 30, + ACTIONS(1537), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -119776,96 +116525,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117869] = 21, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2327), 1, + [116859] = 10, + ACTIONS(938), 1, + anon_sym_LF, + ACTIONS(2293), 1, anon_sym_LPAREN, - ACTIONS(2329), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2333), 1, + ACTIONS(2301), 1, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2303), 1, anon_sym_QMARK_DOT, - ACTIONS(2341), 1, - anon_sym_PIPE, - ACTIONS(2343), 1, - anon_sym_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2349), 1, + ACTIONS(2319), 1, anon_sym_QMARK_LBRACK, - STATE(1867), 1, + STATE(1903), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, + ACTIONS(936), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2337), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2339), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1408), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [117949] = 6, - ACTIONS(2392), 1, - anon_sym_and, - ACTIONS(2394), 1, - anon_sym_PLUS, + anon_sym_GT, + anon_sym_is, + [116917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1322), 5, + ACTIONS(1543), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1320), 26, + ACTIONS(1541), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119879,42 +116614,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117999] = 10, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_QMARK_DOT, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - STATE(1867), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [116961] = 5, + ACTIONS(1074), 1, + anon_sym_LF, + ACTIONS(2378), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1358), 24, - sym__newline, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1072), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119922,39 +116649,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, - [118057] = 3, - ACTIONS(3), 2, + anon_sym_QMARK_LBRACK, + [117009] = 7, + ACTIONS(926), 1, + anon_sym_LF, + ACTIONS(2376), 1, + anon_sym_and, + ACTIONS(2378), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 30, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(924), 25, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -119962,49 +116694,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [118101] = 8, - ACTIONS(2247), 1, - anon_sym_not, - ACTIONS(2263), 1, - anon_sym_is, - STATE(1578), 1, - aux_sym_comparison_operator_repeat1, + [117061] = 5, + ACTIONS(2387), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 2, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1068), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2261), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2239), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 23, + ACTIONS(1070), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -120013,47 +116739,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [118155] = 12, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_QMARK_DOT, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - STATE(1867), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [117109] = 4, + STATE(1506), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, + ACTIONS(1082), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1084), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -120064,189 +116786,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [118217] = 21, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, - anon_sym_STAR_STAR, - ACTIONS(2363), 1, - anon_sym_PLUS, - ACTIONS(2365), 1, - anon_sym_DASH, - ACTIONS(2367), 1, - anon_sym_AMP, - ACTIONS(2369), 1, - anon_sym_CARET, - ACTIONS(2386), 1, - anon_sym_PIPE, - ACTIONS(2398), 1, - anon_sym_not, - ACTIONS(2402), 1, - anon_sym_is, - STATE(1299), 1, - sym_argument_list, - STATE(1750), 1, - aux_sym_comparison_operator_repeat1, + [117155] = 4, + STATE(1570), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 2, + ACTIONS(1259), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2361), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2371), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2396), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 8, + ACTIONS(1261), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - [118297] = 21, - ACTIONS(2173), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [117201] = 22, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, + ACTIONS(2358), 1, anon_sym_STAR_STAR, - ACTIONS(2363), 1, + ACTIONS(2360), 1, anon_sym_PLUS, - ACTIONS(2365), 1, + ACTIONS(2362), 1, anon_sym_DASH, - ACTIONS(2367), 1, + ACTIONS(2366), 1, + anon_sym_PIPE, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2369), 1, + ACTIONS(2370), 1, anon_sym_CARET, - ACTIONS(2386), 1, - anon_sym_PIPE, - ACTIONS(2398), 1, - anon_sym_not, - ACTIONS(2402), 1, - anon_sym_is, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2229), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 2, + ACTIONS(888), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2356), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2361), 2, + ACTIONS(2364), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2371), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2396), 5, + ACTIONS(1154), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + ACTIONS(910), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 8, + ACTIONS(948), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_and, anon_sym_or, - [118377] = 16, - ACTIONS(2327), 1, + [117283] = 22, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2329), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2343), 1, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2358), 1, + anon_sym_STAR_STAR, + ACTIONS(2360), 1, + anon_sym_PLUS, + ACTIONS(2362), 1, + anon_sym_DASH, + ACTIONS(2366), 1, + anon_sym_PIPE, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2345), 1, + ACTIONS(2370), 1, anon_sym_CARET, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - STATE(1867), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 2, + ACTIONS(2356), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2337), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2339), 2, + ACTIONS(2364), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1358), 16, - sym__newline, + ACTIONS(1124), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + ACTIONS(910), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [117365] = 4, + ACTIONS(1313), 1, + anon_sym_LF, + ACTIONS(2404), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1311), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [117411] = 8, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2415), 1, anon_sym_is, - [118447] = 3, + STATE(1496), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1362), 5, - anon_sym_EQ, + ACTIONS(1481), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2412), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 30, + ACTIONS(2406), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1483), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -120255,11 +117022,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -120271,87 +117036,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [118491] = 15, - ACTIONS(2327), 1, + [117465] = 10, + ACTIONS(1241), 1, + anon_sym_LF, + ACTIONS(2376), 1, + anon_sym_and, + ACTIONS(2378), 1, + anon_sym_PLUS, + ACTIONS(2418), 1, + anon_sym_as, + ACTIONS(2420), 1, + anon_sym_if, + ACTIONS(2422), 1, + anon_sym_or, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1128), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1243), 25, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2329), 1, anon_sym_LBRACK, - ACTIONS(2333), 1, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_QMARK_DOT, - ACTIONS(2345), 1, + anon_sym_not, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_CARET, - ACTIONS(2349), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, anon_sym_QMARK_LBRACK, - STATE(1867), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [117523] = 6, + ACTIONS(2387), 1, + anon_sym_PLUS, + ACTIONS(2424), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1078), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2337), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2339), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1080), 27, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [118559] = 4, - STATE(1620), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + anon_sym_QMARK_LBRACK, + [117573] = 4, + ACTIONS(934), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1338), 29, - sym__newline, + STATE(1581), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(932), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -120359,6 +117155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120366,105 +117163,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [118605] = 5, - ACTIONS(2404), 1, - anon_sym_PIPE, - STATE(1543), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [117619] = 8, + ACTIONS(1197), 1, + anon_sym_LF, + ACTIONS(2376), 1, + anon_sym_and, + ACTIONS(2378), 1, + anon_sym_PLUS, + ACTIONS(2422), 1, + anon_sym_or, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1263), 27, + ACTIONS(1128), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1199), 27, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [118653] = 19, - ACTIONS(1223), 1, + [117673] = 20, + ACTIONS(882), 1, anon_sym_LF, - ACTIONS(2317), 1, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(912), 1, + anon_sym_is, + ACTIONS(2293), 1, anon_sym_LPAREN, - ACTIONS(2319), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2321), 1, + ACTIONS(2301), 1, anon_sym_STAR_STAR, - ACTIONS(2323), 1, + ACTIONS(2303), 1, anon_sym_QMARK_DOT, - ACTIONS(2325), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2411), 1, - anon_sym_not, - ACTIONS(2415), 1, + ACTIONS(2309), 1, anon_sym_PIPE, - ACTIONS(2417), 1, + ACTIONS(2311), 1, anon_sym_AMP, - ACTIONS(2419), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2423), 1, - anon_sym_is, - STATE(1839), 1, + ACTIONS(2319), 1, + anon_sym_QMARK_LBRACK, + STATE(1903), 1, sym_argument_list, - STATE(2228), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, + ACTIONS(878), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2421), 2, + ACTIONS(2315), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2409), 4, + ACTIONS(2299), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1225), 7, + ACTIONS(880), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - ACTIONS(2407), 7, + ACTIONS(888), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -120472,69 +117275,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - [118729] = 14, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_QMARK_DOT, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - STATE(1867), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [117751] = 4, + ACTIONS(2426), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, + ACTIONS(1082), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2337), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2339), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 18, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1084), 28, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [118795] = 3, + anon_sym_QMARK_LBRACK, + [117797] = 4, + ACTIONS(2285), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 5, - anon_sym_EQ, + ACTIONS(1362), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1607), 30, + ACTIONS(1364), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -120565,94 +117359,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118839] = 20, - ACTIONS(2327), 1, + [117843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1374), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1379), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(2329), 1, anon_sym_LBRACK, - ACTIONS(2333), 1, + anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + anon_sym_for, anon_sym_QMARK_DOT, - ACTIONS(2341), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2343), 1, anon_sym_AMP, - ACTIONS(2345), 1, anon_sym_CARET, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2427), 1, - anon_sym_not, - ACTIONS(2431), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_is, - STATE(1695), 1, - aux_sym_comparison_operator_repeat1, - STATE(1867), 1, - sym_argument_list, + anon_sym_QMARK_LBRACK, + [117887] = 6, + ACTIONS(2387), 1, + anon_sym_PLUS, + ACTIONS(2424), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2331), 2, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2337), 2, - anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(916), 27, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_or, anon_sym_DASH, - ACTIONS(2339), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2429), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2425), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 8, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [117937] = 4, + STATE(1457), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1259), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1261), 29, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - [118917] = 5, - ACTIONS(2394), 1, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [117983] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1467), 5, + ACTIONS(1535), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 27, + ACTIONS(1533), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120666,33 +117527,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118965] = 8, - ACTIONS(2005), 1, - anon_sym_LBRACE, - ACTIONS(2351), 1, - sym_isMutableFlag, - STATE(1298), 1, - sym_dict_expr, - STATE(2052), 1, - aux_sym_comparison_operator_repeat1, - STATE(2053), 1, - aux_sym_dotted_name_repeat1, + [118027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(746), 4, + ACTIONS(1531), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(748), 26, + ACTIONS(1529), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -120712,47 +117568,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119019] = 13, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_QMARK_DOT, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - STATE(1867), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [118071] = 4, + ACTIONS(2428), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, + ACTIONS(1311), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2337), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2339), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 20, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1313), 28, sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -120763,36 +117609,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [119083] = 6, - ACTIONS(2357), 1, - anon_sym_PLUS, - ACTIONS(2377), 1, - anon_sym_and, + anon_sym_QMARK_LBRACK, + [118117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1322), 4, + ACTIONS(1527), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1320), 27, - sym__newline, + ACTIONS(1525), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -120807,27 +117651,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119133] = 6, - ACTIONS(2392), 1, - anon_sym_and, - ACTIONS(2394), 1, + [118161] = 7, + ACTIONS(2374), 1, anon_sym_PLUS, + ACTIONS(2391), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1441), 5, + ACTIONS(916), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(924), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(926), 21, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -120835,9 +117682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120851,20 +117696,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119183] = 6, - ACTIONS(1439), 1, + [118213] = 6, + ACTIONS(916), 1, anon_sym_LF, - ACTIONS(2433), 1, + ACTIONS(2376), 1, anon_sym_and, - ACTIONS(2435), 1, + ACTIONS(2378), 1, anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, + STATE(1499), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1441), 30, + ACTIONS(918), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -120895,30 +117740,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [119233] = 7, - ACTIONS(2392), 1, - anon_sym_and, - ACTIONS(2394), 1, + [118263] = 6, + ACTIONS(2374), 1, anon_sym_PLUS, + ACTIONS(2391), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1439), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1473), 5, + ACTIONS(1078), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1475), 21, + ACTIONS(1080), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -120926,7 +117768,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120940,34 +117784,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119285] = 4, - ACTIONS(2283), 1, - anon_sym_EQ, + [118313] = 5, + ACTIONS(2387), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 4, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1342), 30, + ACTIONS(916), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -120982,93 +117827,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119331] = 19, - ACTIONS(1223), 1, - anon_sym_LF, - ACTIONS(2317), 1, - anon_sym_LPAREN, - ACTIONS(2319), 1, - anon_sym_LBRACK, - ACTIONS(2321), 1, - anon_sym_STAR_STAR, - ACTIONS(2323), 1, - anon_sym_QMARK_DOT, - ACTIONS(2325), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2411), 1, - anon_sym_not, - ACTIONS(2415), 1, - anon_sym_PIPE, - ACTIONS(2417), 1, - anon_sym_AMP, - ACTIONS(2419), 1, - anon_sym_CARET, - ACTIONS(2423), 1, - anon_sym_is, - STATE(1797), 1, - aux_sym_comparison_operator_repeat1, - STATE(1839), 1, - sym_argument_list, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2421), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2409), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1225), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - ACTIONS(2407), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - [119407] = 6, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2437), 1, - anon_sym_not, - ACTIONS(2439), 1, - anon_sym_PLUS, + [118361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 5, + ACTIONS(1523), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 27, + ACTIONS(1521), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -121083,22 +117868,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119457] = 5, - ACTIONS(2394), 1, + [118405] = 6, + ACTIONS(2374), 1, anon_sym_PLUS, + ACTIONS(2391), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1447), 5, + ACTIONS(918), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 27, + ACTIONS(916), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -121111,7 +117898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -121126,44 +117912,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119505] = 8, - ACTIONS(2444), 1, - anon_sym_not, - ACTIONS(2450), 1, - anon_sym_is, - STATE(1559), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [118455] = 5, + ACTIONS(916), 1, + anon_sym_LF, + ACTIONS(2378), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2441), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1569), 23, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121171,27 +117947,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, anon_sym_QMARK_LBRACK, - [119559] = 7, - ACTIONS(1475), 1, + [118503] = 5, + ACTIONS(1070), 1, anon_sym_LF, - ACTIONS(2433), 1, - anon_sym_and, - ACTIONS(2435), 1, + ACTIONS(2378), 1, anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, + STATE(1499), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1441), 5, + ACTIONS(1068), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1473), 25, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -121199,7 +117977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -121217,38 +117998,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [119611] = 7, - ACTIONS(2392), 1, - anon_sym_and, - ACTIONS(2394), 1, - anon_sym_PLUS, + [118551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 5, + ACTIONS(1519), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 8, + ACTIONS(1517), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1475), 18, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121262,22 +118039,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119663] = 4, - ACTIONS(1330), 1, + [118595] = 4, + ACTIONS(1261), 1, anon_sym_LF, + STATE(1482), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1328), 32, + ACTIONS(1259), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -121304,17 +118081,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [119709] = 3, + [118641] = 8, + ACTIONS(2261), 1, + anon_sym_not, + ACTIONS(2269), 1, + anon_sym_is, + STATE(1531), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 5, - anon_sym_EQ, + ACTIONS(880), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2267), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 30, + ACTIONS(2259), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -121323,11 +118112,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -121339,70 +118126,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_QMARK_LBRACK, + [118695] = 13, + ACTIONS(2321), 1, + anon_sym_LPAREN, + ACTIONS(2323), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + anon_sym_STAR_STAR, + ACTIONS(2331), 1, + anon_sym_QMARK_DOT, + ACTIONS(2351), 1, + anon_sym_QMARK_LBRACK, + STATE(1786), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2337), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(944), 20, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [118759] = 14, + ACTIONS(2321), 1, + anon_sym_LPAREN, + ACTIONS(2323), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + anon_sym_STAR_STAR, + ACTIONS(2331), 1, + anon_sym_QMARK_DOT, + ACTIONS(2351), 1, anon_sym_QMARK_LBRACK, - [119753] = 3, + STATE(1786), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1601), 30, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2337), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 18, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [119797] = 6, - ACTIONS(2108), 1, + [118825] = 5, + ACTIONS(2101), 1, anon_sym_in, - ACTIONS(2453), 1, + ACTIONS(2430), 1, anon_sym_not, - ACTIONS(2455), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 5, + ACTIONS(1681), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 27, + ACTIONS(1683), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -121430,36 +118273,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119847] = 5, - ACTIONS(2394), 1, - anon_sym_PLUS, + [118873] = 10, + ACTIONS(2321), 1, + anon_sym_LPAREN, + ACTIONS(2323), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + anon_sym_STAR_STAR, + ACTIONS(2331), 1, + anon_sym_QMARK_DOT, + ACTIONS(2351), 1, + anon_sym_QMARK_LBRACK, + STATE(1786), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 5, + ACTIONS(936), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 27, + ACTIONS(938), 24, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121472,21 +118321,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [118931] = 20, + ACTIONS(2321), 1, + anon_sym_LPAREN, + ACTIONS(2323), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + anon_sym_STAR_STAR, + ACTIONS(2331), 1, + anon_sym_QMARK_DOT, + ACTIONS(2333), 1, + anon_sym_not, + ACTIONS(2339), 1, + anon_sym_PIPE, + ACTIONS(2341), 1, + anon_sym_AMP, + ACTIONS(2343), 1, + anon_sym_CARET, + ACTIONS(2349), 1, + anon_sym_is, + ACTIONS(2351), 1, anon_sym_QMARK_LBRACK, - [119895] = 4, - ACTIONS(2457), 1, - anon_sym_DASH_GT, + STATE(1603), 1, + aux_sym_comparison_operator_repeat1, + STATE(1786), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1420), 6, - anon_sym_EQ, + ACTIONS(2327), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2335), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2337), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2347), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2325), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 8, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [119009] = 4, + STATE(1506), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1342), 5, + anon_sym_EQ, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1418), 28, + ACTIONS(1344), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -121502,6 +118407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121515,37 +118421,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119941] = 6, - ACTIONS(2357), 1, - anon_sym_PLUS, - ACTIONS(2377), 1, - anon_sym_and, - ACTIONS(3), 2, + [119055] = 4, + ACTIONS(1022), 1, + anon_sym_LF, + STATE(1586), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1439), 27, - sym__newline, + ACTIONS(1020), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121553,21 +118455,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [119991] = 4, - ACTIONS(1338), 1, + [119101] = 4, + ACTIONS(1325), 1, anon_sym_LF, - STATE(1597), 1, + STATE(1520), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 33, + ACTIONS(1323), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -121601,37 +118505,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [120037] = 8, - ACTIONS(1503), 1, - anon_sym_LF, - ACTIONS(2433), 1, - anon_sym_and, - ACTIONS(2435), 1, - anon_sym_PLUS, - ACTIONS(2459), 1, - anon_sym_or, - ACTIONS(5), 2, + [119147] = 4, + STATE(1496), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, + ACTIONS(1563), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1561), 30, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1501), 27, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121639,45 +118541,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [120091] = 10, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_QMARK_DOT, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - STATE(1867), 1, - sym_argument_list, - STATE(2238), 1, + [119193] = 4, + STATE(1496), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1316), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1318), 24, - sym__newline, + ACTIONS(1561), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -121695,36 +118588,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [120149] = 5, - ACTIONS(2394), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [119239] = 4, + STATE(1466), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1432), 5, + ACTIONS(1020), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1430), 27, + ACTIONS(1022), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121738,131 +118631,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120197] = 20, - ACTIONS(1352), 1, - anon_sym_not, - ACTIONS(1356), 1, - anon_sym_is, - ACTIONS(1408), 1, - anon_sym_LF, - ACTIONS(2317), 1, + [119285] = 15, + ACTIONS(2321), 1, anon_sym_LPAREN, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_LBRACK, - ACTIONS(2321), 1, + ACTIONS(2329), 1, anon_sym_STAR_STAR, - ACTIONS(2323), 1, + ACTIONS(2331), 1, anon_sym_QMARK_DOT, - ACTIONS(2325), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2415), 1, - anon_sym_PIPE, - ACTIONS(2417), 1, - anon_sym_AMP, - ACTIONS(2419), 1, + ACTIONS(2343), 1, anon_sym_CARET, - STATE(1839), 1, + ACTIONS(2351), 1, + anon_sym_QMARK_LBRACK, + STATE(1786), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1410), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2413), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2421), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2409), 4, + ACTIONS(942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2337), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1225), 5, + ACTIONS(2345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 17, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(1350), 7, - anon_sym_in, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - [120275] = 10, - ACTIONS(1388), 1, - anon_sym_LF, - ACTIONS(2433), 1, - anon_sym_and, - ACTIONS(2435), 1, - anon_sym_PLUS, - ACTIONS(2459), 1, - anon_sym_or, - ACTIONS(2461), 1, - anon_sym_as, - ACTIONS(2463), 1, - anon_sym_if, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(973), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1390), 25, - anon_sym_COMMA, + anon_sym_is, + [119353] = 16, + ACTIONS(2321), 1, anon_sym_LPAREN, + ACTIONS(2323), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + ACTIONS(2329), 1, anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_DASH, + ACTIONS(2331), 1, + anon_sym_QMARK_DOT, + ACTIONS(2341), 1, + anon_sym_AMP, + ACTIONS(2343), 1, + anon_sym_CARET, + ACTIONS(2351), 1, + anon_sym_QMARK_LBRACK, + STATE(1786), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2327), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2337), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2345), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, + ACTIONS(944), 16, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [120333] = 4, - ACTIONS(1477), 1, - anon_sym_LF, - STATE(1583), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + [119423] = 4, + STATE(1506), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1479), 33, + ACTIONS(1323), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1325), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -121870,7 +118767,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121878,42 +118774,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [120379] = 5, - ACTIONS(1342), 1, - anon_sym_LF, - ACTIONS(2465), 1, - anon_sym_EQ, - STATE(1569), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [119469] = 4, + STATE(1496), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 32, + ACTIONS(1563), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1561), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -121921,21 +118816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [120427] = 4, - STATE(1559), 1, + [119515] = 4, + STATE(1496), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -121971,35 +118864,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120473] = 4, - STATE(1559), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [119561] = 4, + ACTIONS(1329), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1561), 30, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1327), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122007,42 +118898,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [120519] = 3, + [119607] = 12, + ACTIONS(2321), 1, + anon_sym_LPAREN, + ACTIONS(2323), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + anon_sym_STAR_STAR, + ACTIONS(2331), 1, + anon_sym_QMARK_DOT, + ACTIONS(2351), 1, + anon_sym_QMARK_LBRACK, + STATE(1786), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 30, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2337), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(944), 22, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -122053,36 +118956,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [120563] = 4, - STATE(1559), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [119669] = 4, + ACTIONS(1344), 1, + anon_sym_LF, + STATE(1520), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1561), 30, + ACTIONS(1342), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122090,36 +118990,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [120609] = 4, - STATE(1559), 1, + [119715] = 10, + ACTIONS(2321), 1, + anon_sym_LPAREN, + ACTIONS(2323), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + anon_sym_STAR_STAR, + ACTIONS(2331), 1, + anon_sym_QMARK_DOT, + ACTIONS(2351), 1, + anon_sym_QMARK_LBRACK, + STATE(1786), 1, + sym_argument_list, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(942), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 30, + ACTIONS(944), 24, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -122137,23 +119046,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [120655] = 4, - ACTIONS(1469), 1, + [119773] = 4, + ACTIONS(876), 1, anon_sym_LF, - STATE(1575), 1, - aux_sym_dotted_name_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1471), 33, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(874), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -122180,34 +119088,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [120701] = 5, - ACTIONS(1367), 1, - anon_sym_LF, - STATE(1583), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + [119819] = 10, + ACTIONS(2321), 1, + anon_sym_LPAREN, + ACTIONS(2323), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + anon_sym_STAR_STAR, + ACTIONS(2331), 1, + anon_sym_QMARK_DOT, + ACTIONS(2351), 1, + anon_sym_QMARK_LBRACK, + STATE(1786), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 2, + ACTIONS(942), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(944), 24, + sym__newline, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1362), 31, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_else, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122215,30 +119131,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [120749] = 4, - ACTIONS(1259), 1, + [119877] = 4, + ACTIONS(876), 1, anon_sym_LF, - STATE(1569), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 33, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(874), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -122265,37 +119178,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [120795] = 7, - ACTIONS(2357), 1, - anon_sym_PLUS, - ACTIONS(2377), 1, - anon_sym_and, + [119923] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 4, + ACTIONS(1503), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 5, + ACTIONS(1501), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1475), 22, - sym__newline, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -122310,38 +119219,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120847] = 10, - ACTIONS(1358), 1, + [119967] = 6, + ACTIONS(1080), 1, anon_sym_LF, - ACTIONS(2317), 1, - anon_sym_LPAREN, - ACTIONS(2319), 1, - anon_sym_LBRACK, - ACTIONS(2321), 1, - anon_sym_STAR_STAR, - ACTIONS(2323), 1, - anon_sym_QMARK_DOT, - ACTIONS(2325), 1, - anon_sym_QMARK_LBRACK, - STATE(1839), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2376), 1, + anon_sym_and, + ACTIONS(2378), 1, + anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 27, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1078), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -122358,40 +119262,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - [120905] = 10, - ACTIONS(1358), 1, - anon_sym_LF, - ACTIONS(2317), 1, - anon_sym_LPAREN, - ACTIONS(2319), 1, - anon_sym_LBRACK, - ACTIONS(2321), 1, - anon_sym_STAR_STAR, - ACTIONS(2323), 1, - anon_sym_QMARK_DOT, - ACTIONS(2325), 1, anon_sym_QMARK_LBRACK, - STATE(1839), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [120017] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 27, + ACTIONS(1499), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1497), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122399,35 +119298,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, - [120963] = 4, - STATE(1621), 1, - aux_sym_union_type_repeat1, + anon_sym_QMARK_LBRACK, + [120061] = 4, + STATE(1532), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 6, + ACTIONS(1024), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 28, + ACTIONS(1026), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -122435,6 +119332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122448,124 +119346,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121009] = 11, - ACTIONS(1358), 1, - anon_sym_LF, - ACTIONS(2317), 1, - anon_sym_LPAREN, - ACTIONS(2319), 1, - anon_sym_LBRACK, - ACTIONS(2321), 1, - anon_sym_STAR_STAR, - ACTIONS(2323), 1, - anon_sym_QMARK_DOT, - ACTIONS(2325), 1, - anon_sym_QMARK_LBRACK, - STATE(1839), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [120107] = 5, + ACTIONS(2432), 1, + anon_sym_EQ, + STATE(1492), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2409), 4, + ACTIONS(1362), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1360), 23, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1364), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, - [121069] = 15, - ACTIONS(1358), 1, - anon_sym_LF, - ACTIONS(2317), 1, - anon_sym_LPAREN, - ACTIONS(2319), 1, - anon_sym_LBRACK, - ACTIONS(2321), 1, - anon_sym_STAR_STAR, - ACTIONS(2323), 1, - anon_sym_QMARK_DOT, - ACTIONS(2325), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2417), 1, - anon_sym_AMP, - ACTIONS(2419), 1, - anon_sym_CARET, - STATE(1839), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2421), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2409), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1360), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - [121137] = 4, - ACTIONS(1270), 1, + [120155] = 4, + ACTIONS(1084), 1, anon_sym_LF, + STATE(1520), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1272), 32, + ACTIONS(1082), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -122592,171 +119431,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [121183] = 14, - ACTIONS(1358), 1, - anon_sym_LF, - ACTIONS(2317), 1, + [120201] = 21, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2321), 1, anon_sym_LPAREN, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_LBRACK, - ACTIONS(2321), 1, + ACTIONS(2329), 1, anon_sym_STAR_STAR, - ACTIONS(2323), 1, + ACTIONS(2331), 1, anon_sym_QMARK_DOT, - ACTIONS(2325), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2419), 1, + ACTIONS(2339), 1, + anon_sym_PIPE, + ACTIONS(2341), 1, + anon_sym_AMP, + ACTIONS(2343), 1, anon_sym_CARET, - STATE(1839), 1, + ACTIONS(2351), 1, + anon_sym_QMARK_LBRACK, + STATE(1786), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2421), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2409), 4, + ACTIONS(888), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2337), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1360), 18, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(2345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1154), 3, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_else, + ACTIONS(910), 5, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - [121249] = 13, - ACTIONS(1358), 1, - anon_sym_LF, - ACTIONS(2317), 1, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [120281] = 10, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2319), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2321), 1, - anon_sym_STAR_STAR, - ACTIONS(2323), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2325), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - STATE(1839), 1, + ACTIONS(2358), 1, + anon_sym_STAR_STAR, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2421), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2409), 4, + ACTIONS(936), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1360), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(938), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, - [121313] = 12, - ACTIONS(1358), 1, - anon_sym_LF, - ACTIONS(2317), 1, + [120339] = 21, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2321), 1, anon_sym_LPAREN, - ACTIONS(2319), 1, + ACTIONS(2323), 1, anon_sym_LBRACK, - ACTIONS(2321), 1, + ACTIONS(2329), 1, anon_sym_STAR_STAR, - ACTIONS(2323), 1, + ACTIONS(2331), 1, anon_sym_QMARK_DOT, - ACTIONS(2325), 1, + ACTIONS(2339), 1, + anon_sym_PIPE, + ACTIONS(2341), 1, + anon_sym_AMP, + ACTIONS(2343), 1, + anon_sym_CARET, + ACTIONS(2351), 1, anon_sym_QMARK_LBRACK, - STATE(1839), 1, + STATE(1786), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2413), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2409), 4, + ACTIONS(888), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2327), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2335), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2337), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1360), 21, + ACTIONS(2345), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1124), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(910), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_not, anon_sym_and, anon_sym_or, + [120419] = 21, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2358), 1, + anon_sym_STAR_STAR, + ACTIONS(2360), 1, + anon_sym_PLUS, + ACTIONS(2362), 1, + anon_sym_DASH, + ACTIONS(2366), 1, anon_sym_PIPE, + ACTIONS(2368), 1, anon_sym_AMP, + ACTIONS(2370), 1, anon_sym_CARET, + ACTIONS(2436), 1, + anon_sym_not, + ACTIONS(2440), 1, + anon_sym_is, + STATE(1211), 1, + sym_argument_list, + STATE(2172), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2356), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2364), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2438), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(2434), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - [121375] = 5, - ACTIONS(1430), 1, + ACTIONS(948), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_or, + [120499] = 4, + ACTIONS(1356), 1, anon_sym_LF, - ACTIONS(2435), 1, - anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, + STATE(1499), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1432), 31, + ACTIONS(1354), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -122771,6 +119680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -122788,27 +119698,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [121423] = 4, - STATE(1542), 1, + [120545] = 4, + STATE(1492), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 5, + ACTIONS(1082), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 29, - sym__newline, + ACTIONS(1084), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -122816,7 +119727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122830,78 +119740,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121469] = 5, - ACTIONS(1263), 1, - anon_sym_LF, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(1597), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [120591] = 5, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 32, + ACTIONS(2442), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1557), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1438), 27, + sym__newline, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [120639] = 20, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(912), 1, + anon_sym_is, + ACTIONS(1124), 1, + anon_sym_LF, + ACTIONS(2293), 1, + anon_sym_LPAREN, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2301), 1, + anon_sym_STAR_STAR, + ACTIONS(2303), 1, + anon_sym_QMARK_DOT, + ACTIONS(2309), 1, + anon_sym_PIPE, + ACTIONS(2311), 1, anon_sym_AMP, + ACTIONS(2313), 1, anon_sym_CARET, + ACTIONS(2319), 1, + anon_sym_QMARK_LBRACK, + STATE(1903), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1122), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2315), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2299), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(880), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(888), 7, + anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, + [120717] = 20, + ACTIONS(896), 1, + anon_sym_not, + ACTIONS(912), 1, anon_sym_is, + ACTIONS(1154), 1, + anon_sym_LF, + ACTIONS(2293), 1, + anon_sym_LPAREN, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2301), 1, + anon_sym_STAR_STAR, + ACTIONS(2303), 1, + anon_sym_QMARK_DOT, + ACTIONS(2309), 1, + anon_sym_PIPE, + ACTIONS(2311), 1, + anon_sym_AMP, + ACTIONS(2313), 1, + anon_sym_CARET, + ACTIONS(2319), 1, anon_sym_QMARK_LBRACK, - [121517] = 4, - ACTIONS(2291), 1, - anon_sym_EQ, - ACTIONS(3), 2, + STATE(1903), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 5, - anon_sym_STAR, + ACTIONS(1152), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2307), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2299), 4, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(880), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(888), 7, + anon_sym_in, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1342), 29, + [120795] = 4, + ACTIONS(1190), 1, + anon_sym_LF, + STATE(1520), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1188), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122909,45 +119933,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [121563] = 8, - ACTIONS(2392), 1, - anon_sym_and, - ACTIONS(2394), 1, + [120841] = 7, + ACTIONS(2387), 1, anon_sym_PLUS, - ACTIONS(2473), 1, - anon_sym_or, + ACTIONS(2424), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1501), 5, + ACTIONS(924), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1503), 23, + ACTIONS(916), 8, + sym__newline, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(926), 19, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_not, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -122961,31 +119986,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121617] = 5, - STATE(1600), 1, + [120893] = 8, + ACTIONS(1995), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + sym_isMutableFlag, + STATE(1236), 1, + sym_dict_expr, + STATE(1998), 1, + aux_sym_comparison_operator_repeat1, + STATE(2000), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1362), 5, - anon_sym_EQ, + ACTIONS(690), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 27, - sym__newline, + ACTIONS(692), 26, + anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -123004,79 +120032,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121665] = 7, - ACTIONS(1439), 1, - anon_sym_LF, - ACTIONS(2433), 1, - anon_sym_and, - ACTIONS(2435), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + [120947] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1473), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, + ACTIONS(1557), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [121717] = 5, - ACTIONS(1439), 1, - anon_sym_LF, - ACTIONS(2435), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 31, + ACTIONS(1559), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123084,36 +120067,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [121765] = 4, - STATE(1621), 1, - aux_sym_union_type_repeat1, + [120991] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1314), 6, - anon_sym_EQ, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1354), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 28, + ACTIONS(1356), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -123121,6 +120101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123134,99 +120115,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121811] = 20, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_QMARK_DOT, - ACTIONS(2341), 1, - anon_sym_PIPE, - ACTIONS(2343), 1, - anon_sym_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2427), 1, - anon_sym_not, - ACTIONS(2431), 1, - anon_sym_is, - STATE(1867), 1, - sym_argument_list, - STATE(2220), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2331), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2337), 2, + [121037] = 10, + ACTIONS(2387), 1, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2339), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2429), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2425), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 8, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(2424), 1, anon_sym_and, - anon_sym_or, - [121889] = 10, - ACTIONS(2392), 1, - anon_sym_and, - ACTIONS(2394), 1, - anon_sym_PLUS, - ACTIONS(2473), 1, - anon_sym_or, - ACTIONS(2478), 1, + ACTIONS(2447), 1, anon_sym_as, - ACTIONS(2480), 1, + ACTIONS(2449), 1, anon_sym_if, + ACTIONS(2451), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1390), 5, + ACTIONS(1243), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1388), 21, + ACTIONS(1241), 22, + sym__newline, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_not, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123240,33 +120163,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121947] = 4, - ACTIONS(1312), 1, - anon_sym_LF, - STATE(1569), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [121095] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1314), 33, + ACTIONS(1477), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123274,33 +120198,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [121993] = 4, - ACTIONS(1263), 1, - anon_sym_LF, - STATE(1569), 1, + [121139] = 5, + ACTIONS(2453), 1, + anon_sym_EQ, + STATE(1506), 1, aux_sym_union_type_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 33, + ACTIONS(1362), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1364), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -123308,7 +120234,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123316,144 +120241,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [122039] = 20, - ACTIONS(1346), 1, + [121187] = 12, + ACTIONS(944), 1, anon_sym_LF, - ACTIONS(1352), 1, - anon_sym_not, - ACTIONS(1356), 1, - anon_sym_is, - ACTIONS(2317), 1, + ACTIONS(2293), 1, anon_sym_LPAREN, - ACTIONS(2319), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2321), 1, + ACTIONS(2301), 1, anon_sym_STAR_STAR, - ACTIONS(2323), 1, + ACTIONS(2303), 1, anon_sym_QMARK_DOT, - ACTIONS(2325), 1, + ACTIONS(2319), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2415), 1, - anon_sym_PIPE, - ACTIONS(2417), 1, - anon_sym_AMP, - ACTIONS(2419), 1, - anon_sym_CARET, - STATE(1839), 1, + STATE(1903), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1348), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2413), 2, + ACTIONS(2307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2421), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2409), 4, + ACTIONS(2299), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1225), 5, + ACTIONS(942), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(1350), 7, - anon_sym_in, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - [122117] = 20, - ACTIONS(1352), 1, - anon_sym_not, - ACTIONS(1356), 1, anon_sym_is, - ACTIONS(1424), 1, + [121249] = 13, + ACTIONS(944), 1, anon_sym_LF, - ACTIONS(2317), 1, + ACTIONS(2293), 1, anon_sym_LPAREN, - ACTIONS(2319), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2321), 1, + ACTIONS(2301), 1, anon_sym_STAR_STAR, - ACTIONS(2323), 1, + ACTIONS(2303), 1, anon_sym_QMARK_DOT, - ACTIONS(2325), 1, + ACTIONS(2319), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2415), 1, - anon_sym_PIPE, - ACTIONS(2417), 1, - anon_sym_AMP, - ACTIONS(2419), 1, - anon_sym_CARET, - STATE(1839), 1, + STATE(1903), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1426), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2413), 2, + ACTIONS(2307), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2421), 2, + ACTIONS(2315), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2409), 4, + ACTIONS(2299), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1225), 5, + ACTIONS(942), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(1350), 7, - anon_sym_in, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - [122195] = 4, - STATE(1621), 1, + anon_sym_is, + [121313] = 5, + ACTIONS(2455), 1, + anon_sym_PIPE, + STATE(1570), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 6, + ACTIONS(1188), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 28, + ACTIONS(1190), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -123471,7 +120381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -123482,41 +120391,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122241] = 5, - ACTIONS(1465), 1, + [121361] = 14, + ACTIONS(944), 1, anon_sym_LF, - ACTIONS(2435), 1, - anon_sym_PLUS, + ACTIONS(2293), 1, + anon_sym_LPAREN, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2301), 1, + anon_sym_STAR_STAR, + ACTIONS(2303), 1, + anon_sym_QMARK_DOT, + ACTIONS(2313), 1, + anon_sym_CARET, + ACTIONS(2319), 1, + anon_sym_QMARK_LBRACK, + STATE(1903), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1467), 31, + ACTIONS(2307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2299), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(942), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -123524,84 +120443,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [122289] = 4, - STATE(1542), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1314), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1312), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + [121427] = 15, + ACTIONS(944), 1, + anon_sym_LF, + ACTIONS(2293), 1, anon_sym_LPAREN, + ACTIONS(2295), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(2301), 1, anon_sym_STAR_STAR, + ACTIONS(2303), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, + ACTIONS(2311), 1, anon_sym_AMP, + ACTIONS(2313), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, + ACTIONS(2319), 1, anon_sym_QMARK_LBRACK, - [122335] = 5, - ACTIONS(1377), 1, - anon_sym_LF, + STATE(1903), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2482), 2, + ACTIONS(2307), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2315), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2299), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(942), 17, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1613), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1372), 30, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -123609,83 +120496,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [122383] = 22, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2173), 1, + [121495] = 21, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2353), 1, + ACTIONS(2358), 1, anon_sym_STAR_STAR, - ACTIONS(2363), 1, + ACTIONS(2360), 1, anon_sym_PLUS, - ACTIONS(2365), 1, + ACTIONS(2362), 1, anon_sym_DASH, - ACTIONS(2367), 1, + ACTIONS(2366), 1, + anon_sym_PIPE, + ACTIONS(2368), 1, anon_sym_AMP, - ACTIONS(2369), 1, + ACTIONS(2370), 1, anon_sym_CARET, - ACTIONS(2386), 1, - anon_sym_PIPE, - STATE(1299), 1, + ACTIONS(2436), 1, + anon_sym_not, + ACTIONS(2440), 1, + anon_sym_is, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(1611), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2359), 2, + ACTIONS(2356), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2361), 2, + ACTIONS(2364), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2371), 2, + ACTIONS(2372), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1408), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, + ACTIONS(2438), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2434), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [122465] = 4, - ACTIONS(1332), 1, + ACTIONS(948), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_and, + anon_sym_or, + [121575] = 4, + ACTIONS(1026), 1, anon_sym_LF, + STATE(1528), 1, + aux_sym_dotted_name_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1334), 32, + ACTIONS(1024), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -123712,77 +120597,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [122511] = 4, - STATE(1621), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [121621] = 11, + ACTIONS(944), 1, + anon_sym_LF, + ACTIONS(2293), 1, + anon_sym_LPAREN, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2301), 1, + anon_sym_STAR_STAR, + ACTIONS(2303), 1, + anon_sym_QMARK_DOT, + ACTIONS(2319), 1, + anon_sym_QMARK_LBRACK, + STATE(1903), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 6, - anon_sym_EQ, + ACTIONS(2299), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1263), 28, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(942), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, + [121681] = 10, + ACTIONS(944), 1, + anon_sym_LF, + ACTIONS(2293), 1, + anon_sym_LPAREN, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2301), 1, + anon_sym_STAR_STAR, + ACTIONS(2303), 1, + anon_sym_QMARK_DOT, + ACTIONS(2319), 1, anon_sym_QMARK_LBRACK, - [122557] = 4, - ACTIONS(2485), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + STATE(1903), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1412), 28, - sym__newline, + ACTIONS(942), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_STAR, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123790,33 +120687,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [122603] = 4, - ACTIONS(1221), 1, + [121739] = 10, + ACTIONS(944), 1, anon_sym_LF, + ACTIONS(2293), 1, + anon_sym_LPAREN, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2301), 1, + anon_sym_STAR_STAR, + ACTIONS(2303), 1, + anon_sym_QMARK_DOT, + ACTIONS(2319), 1, + anon_sym_QMARK_LBRACK, + STATE(1903), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1219), 32, + ACTIONS(942), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -123837,64 +120742,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, + [121797] = 21, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2321), 1, + anon_sym_LPAREN, + ACTIONS(2323), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + anon_sym_STAR_STAR, + ACTIONS(2331), 1, + anon_sym_QMARK_DOT, + ACTIONS(2339), 1, + anon_sym_PIPE, + ACTIONS(2341), 1, + anon_sym_AMP, + ACTIONS(2343), 1, + anon_sym_CARET, + ACTIONS(2351), 1, anon_sym_QMARK_LBRACK, - [122649] = 4, - STATE(1542), 1, - aux_sym_union_type_repeat1, + STATE(1786), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2327), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2335), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2337), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2345), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(882), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(910), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [122695] = 5, - ACTIONS(2487), 1, - anon_sym_PIPE, - STATE(1620), 1, - aux_sym_union_type_repeat1, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [121877] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 5, - anon_sym_EQ, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1327), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 28, + ACTIONS(1329), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -123913,6 +120832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -123923,28 +120843,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122743] = 4, - STATE(1543), 1, - aux_sym_union_type_repeat1, + [121923] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 6, - anon_sym_EQ, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(874), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1338), 28, + ACTIONS(876), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -123952,6 +120871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -123965,76 +120885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122789] = 21, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2327), 1, - anon_sym_LPAREN, - ACTIONS(2329), 1, - anon_sym_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_QMARK_DOT, - ACTIONS(2341), 1, - anon_sym_PIPE, - ACTIONS(2343), 1, - anon_sym_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2349), 1, - anon_sym_QMARK_LBRACK, - STATE(1867), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2337), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2339), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1346), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [122869] = 4, - ACTIONS(1221), 1, + [121969] = 5, + ACTIONS(1438), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, + ACTIONS(2458), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1581), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1219), 32, - anon_sym_DOT, + ACTIONS(1433), 30, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -124044,7 +120907,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -124066,25 +120928,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [122915] = 4, - ACTIONS(1274), 1, - anon_sym_LF, - ACTIONS(2490), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, + [122017] = 8, + ACTIONS(1995), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + sym_isMutableFlag, + STATE(1236), 1, + sym_dict_expr, + STATE(2000), 1, + aux_sym_dotted_name_repeat1, + STATE(2186), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 33, + ACTIONS(690), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(692), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -124092,7 +120961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124100,43 +120968,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [122961] = 6, - ACTIONS(1320), 1, - anon_sym_LF, - ACTIONS(2433), 1, - anon_sym_and, - ACTIONS(2435), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + [122071] = 4, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1322), 30, + ACTIONS(874), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(876), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124144,30 +121010,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [123011] = 4, - ACTIONS(2492), 1, - anon_sym_DASH_GT, + [122117] = 8, + ACTIONS(2387), 1, + anon_sym_PLUS, + ACTIONS(2424), 1, + anon_sym_and, + ACTIONS(2451), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 6, - anon_sym_EQ, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1199), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 28, + ACTIONS(1197), 24, sym__newline, - anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -124176,11 +121047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124194,34 +121062,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123057] = 4, - STATE(1542), 1, - aux_sym_union_type_repeat1, + [122171] = 7, + ACTIONS(2387), 1, + anon_sym_PLUS, + ACTIONS(2424), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 5, - anon_sym_EQ, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 29, - sym__newline, + ACTIONS(916), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(926), 22, + sym__newline, anon_sym_COMMA, anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -124236,16 +121107,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123103] = 4, - ACTIONS(1274), 1, + [122223] = 5, + ACTIONS(1379), 1, anon_sym_LF, - STATE(1569), 1, - aux_sym_union_type_repeat1, + STATE(1586), 1, + aux_sym_dotted_name_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 33, + ACTIONS(2461), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1374), 31, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -124256,7 +121129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -124278,18 +121150,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [123149] = 5, - ACTIONS(1445), 1, + [122271] = 5, + ACTIONS(1364), 1, anon_sym_LF, - ACTIONS(2435), 1, - anon_sym_PLUS, + ACTIONS(2464), 1, + anon_sym_EQ, + STATE(1520), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1447), 31, + ACTIONS(1362), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -124304,6 +121175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -124321,17 +121193,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [123197] = 3, + [122319] = 21, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, + anon_sym_QMARK_DOT, + ACTIONS(2480), 1, + anon_sym_PIPE, + ACTIONS(2482), 1, + anon_sym_AMP, + ACTIONS(2484), 1, + anon_sym_CARET, + ACTIONS(2488), 1, + anon_sym_QMARK_LBRACK, + STATE(1981), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_EQ, + ACTIONS(888), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1124), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2470), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2478), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(910), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [122398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1759), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + ACTIONS(1761), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -124362,17 +121291,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123241] = 3, + [122441] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2490), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2492), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122484] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2494), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2496), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122527] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2498), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2500), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122570] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2502), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2504), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2506), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2508), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 5, + ACTIONS(1523), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 29, + ACTIONS(1521), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -124402,73 +121531,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123284] = 4, - ACTIONS(1561), 1, - anon_sym_LF, - STATE(1754), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [122699] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2510), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2512), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122742] = 7, + ACTIONS(2514), 1, anon_sym_and, - anon_sym_or, + ACTIONS(2516), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [123329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 4, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1789), 30, + ACTIONS(916), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(926), 21, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -124483,33 +121615,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123372] = 3, + [122793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2518), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2520), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122836] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2522), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2524), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [122879] = 8, + ACTIONS(2529), 1, + anon_sym_not, + ACTIONS(2535), 1, + anon_sym_is, + STATE(1600), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 30, + ACTIONS(1481), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(2526), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1483), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124517,39 +121739,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [123415] = 4, - STATE(2765), 1, - aux_sym_quant_target_repeat1, + [122932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1681), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(1683), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -124564,17 +121780,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123460] = 3, + [122975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 5, - anon_sym_EQ, + ACTIONS(2518), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2520), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [123018] = 4, + STATE(1651), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1593), 29, + ACTIONS(1561), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -124604,27 +121861,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123503] = 3, + [123063] = 4, + STATE(1651), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1777), 30, + ACTIONS(1561), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -124644,27 +121902,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123546] = 3, + [123108] = 4, + STATE(1651), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1223), 30, + ACTIONS(1561), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -124684,27 +121943,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123589] = 3, + [123153] = 4, + STATE(1651), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1781), 30, + ACTIONS(1561), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -124724,23 +121984,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123632] = 3, - ACTIONS(1593), 1, - anon_sym_LF, - ACTIONS(5), 2, + [123198] = 4, + STATE(1656), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 33, + ACTIONS(1020), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1022), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -124748,7 +122012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124756,35 +122019,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [123675] = 3, + [123243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 4, + ACTIONS(1374), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 30, + ACTIONS(1379), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -124804,75 +122065,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123718] = 20, - ACTIONS(2494), 1, + [123286] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2540), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2496), 1, anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2506), 1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2538), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, anon_sym_not, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2514), 1, - anon_sym_AMP, - ACTIONS(2516), 1, - anon_sym_CARET, - ACTIONS(2522), 1, - anon_sym_is, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2234), 1, - aux_sym_comparison_operator_repeat1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [123329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2508), 2, + ACTIONS(2542), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2510), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2498), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 7, + anon_sym_TILDE, + sym_float, + ACTIONS(2544), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - [123795] = 3, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [123372] = 4, + STATE(1600), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1420), 6, - anon_sym_EQ, + ACTIONS(1563), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1418), 28, + ACTIONS(1561), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -124901,33 +122186,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123838] = 3, + [123417] = 4, + STATE(1600), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 4, + ACTIONS(1563), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1805), 30, + ACTIONS(1561), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -124941,72 +122227,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123881] = 8, - ACTIONS(2529), 1, - anon_sym_not, - ACTIONS(2535), 1, - anon_sym_is, - STATE(1645), 1, - aux_sym_comparison_operator_repeat1, + [123462] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2532), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2526), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1569), 22, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(2548), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK_LBRACK, - [123934] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2546), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [123505] = 4, + STATE(1607), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 4, + ACTIONS(1024), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1763), 30, + ACTIONS(1026), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -125026,33 +122308,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123977] = 3, + [123550] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2552), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2550), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [123593] = 4, + STATE(1600), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 4, + ACTIONS(1563), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1705), 30, + ACTIONS(1561), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -125066,33 +122389,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124020] = 3, + [123638] = 4, + STATE(1600), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 4, + ACTIONS(1563), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1809), 30, + ACTIONS(1561), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -125106,56 +122430,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124063] = 3, + [123683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1813), 30, + ACTIONS(2556), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2554), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [123726] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124106] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2558), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [123769] = 5, + ACTIONS(2562), 1, + anon_sym_in, + ACTIONS(2564), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1769), 30, + ACTIONS(1683), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125164,11 +122532,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -125186,52 +122552,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124149] = 4, - STATE(1757), 1, - aux_sym_comparison_operator_repeat1, + [123816] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1561), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2568), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124194] = 3, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2566), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [123859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 12, + ACTIONS(2572), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -125244,7 +122609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2538), 22, + ACTIONS(2570), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125267,11 +122632,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [124237] = 3, + [123902] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 12, + ACTIONS(2576), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -125284,7 +122649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2542), 22, + ACTIONS(2574), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125307,11 +122672,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [124280] = 3, + [123945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 12, + ACTIONS(2580), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -125324,7 +122689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2546), 22, + ACTIONS(2578), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125347,59 +122712,70 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [124323] = 3, + [123988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1817), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2584), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_TILDE, + sym_float, + ACTIONS(2582), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124031] = 8, + ACTIONS(2436), 1, + anon_sym_not, + ACTIONS(2440), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [124366] = 4, - STATE(1757), 1, + STATE(1612), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 5, + ACTIONS(2438), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(880), 3, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1561), 28, + ACTIONS(2434), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125408,10 +122784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -125422,82 +122796,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [124411] = 6, - ACTIONS(2550), 1, - anon_sym_in, - ACTIONS(2552), 1, - anon_sym_not, - ACTIONS(2554), 1, - anon_sym_PLUS, + [124084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1681), 27, + ACTIONS(2588), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2586), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2592), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124460] = 3, - ACTIONS(3), 2, + anon_sym_TILDE, + sym_float, + ACTIONS(2590), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124170] = 3, + ACTIONS(1479), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 30, + ACTIONS(1477), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -125505,17 +122909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [124503] = 3, + [124213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2558), 12, + ACTIONS(2596), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -125528,7 +122934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2556), 22, + ACTIONS(2594), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125551,177 +122957,173 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [124546] = 3, + [124256] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1412), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2600), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124589] = 3, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2598), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1783), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2604), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124632] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2602), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1791), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2604), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124675] = 7, - ACTIONS(2560), 1, - anon_sym_and, - ACTIONS(2562), 1, - anon_sym_PLUS, + anon_sym_TILDE, + sym_float, + ACTIONS(2602), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124385] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1439), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1475), 19, + ACTIONS(2542), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124726] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2544), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124428] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 12, + ACTIONS(2490), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -125732,7 +123134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2546), 22, + ACTIONS(2492), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125755,11 +123157,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [124769] = 3, + [124471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 12, + ACTIONS(2494), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -125772,7 +123174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2564), 22, + ACTIONS(2496), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125795,13 +123197,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [124812] = 3, + [124514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 12, + ACTIONS(2498), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -125812,7 +123214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2570), 22, + ACTIONS(2500), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125835,33 +123237,31 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [124855] = 3, - ACTIONS(3), 2, + [124557] = 3, + ACTIONS(1559), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1829), 30, + ACTIONS(1557), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -125869,100 +123269,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [124898] = 3, + [124600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1833), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2502), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124941] = 4, + anon_sym_TILDE, + sym_float, + ACTIONS(2504), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124643] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1219), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1221), 28, + ACTIONS(2506), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2508), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124686] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2510), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [124986] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2512), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 12, + ACTIONS(2522), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -125973,7 +123414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2574), 22, + ACTIONS(2524), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125996,114 +123437,139 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [125029] = 4, + [124772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1219), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1221), 28, + ACTIONS(2600), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2598), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [124815] = 20, + ACTIONS(2466), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2468), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(2472), 1, anon_sym_STAR_STAR, + ACTIONS(2474), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2480), 1, anon_sym_PIPE, + ACTIONS(2482), 1, anon_sym_AMP, + ACTIONS(2484), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, + ACTIONS(2488), 1, anon_sym_QMARK_LBRACK, - [125074] = 3, + ACTIONS(2608), 1, + anon_sym_not, + ACTIONS(2612), 1, + anon_sym_is, + STATE(1981), 1, + sym_argument_list, + STATE(2178), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 5, - anon_sym_EQ, + ACTIONS(2470), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2478), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2486), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2610), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2606), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + ACTIONS(948), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [124892] = 7, + ACTIONS(948), 1, + anon_sym_LF, + ACTIONS(2305), 1, + anon_sym_not, + ACTIONS(2317), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [125117] = 3, - ACTIONS(3), 2, + STATE(1765), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2297), 7, + anon_sym_in, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1681), 30, + ACTIONS(880), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -126111,35 +123577,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [125160] = 4, + [124943] = 10, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, + anon_sym_QMARK_DOT, + ACTIONS(2488), 1, + anon_sym_QMARK_LBRACK, + STATE(1981), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1328), 4, + ACTIONS(936), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1330), 28, + ACTIONS(938), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -126157,25 +123625,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [125205] = 3, + [125000] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 5, - anon_sym_EQ, + ACTIONS(2596), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2594), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [125043] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1659), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(932), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 29, - sym__newline, + ACTIONS(934), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -126198,17 +123706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125248] = 3, + [125088] = 4, + ACTIONS(2453), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 5, - anon_sym_EQ, + ACTIONS(1362), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1601), 29, + ACTIONS(1364), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -126238,27 +123747,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125291] = 3, + [125133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 4, + ACTIONS(1543), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1843), 30, + ACTIONS(1541), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -126278,72 +123787,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125334] = 6, - ACTIONS(2560), 1, - anon_sym_and, - ACTIONS(2562), 1, - anon_sym_PLUS, + [125176] = 8, + ACTIONS(2617), 1, + anon_sym_not, + ACTIONS(2623), 1, + anon_sym_is, + STATE(1651), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1322), 4, + ACTIONS(1481), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2620), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1320), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(2614), 5, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [125383] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1797), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1795), 30, + ACTIONS(1483), 22, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -126355,19 +123831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [125426] = 3, + [125229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 12, + ACTIONS(2628), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -126378,7 +123849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2578), 22, + ACTIONS(2626), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -126401,113 +123872,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [125469] = 3, - ACTIONS(3), 2, + [125272] = 3, + ACTIONS(1497), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2580), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2582), 22, - anon_sym_import, + ACTIONS(1499), 33, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125512] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2584), 12, - sym_string_start, - ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2586), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125555] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1847), 4, - anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1849), 30, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [125315] = 3, + ACTIONS(1501), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1503), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -126515,33 +123944,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [125598] = 3, + [125358] = 5, + ACTIONS(2630), 1, + anon_sym_EQ, + STATE(1719), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 4, + ACTIONS(1362), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 30, + ACTIONS(1364), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -126561,28 +123994,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125641] = 3, + [125405] = 5, + STATE(1656), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 4, + ACTIONS(2632), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1374), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1857), 30, - anon_sym_DOT, + ACTIONS(1379), 26, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -126601,32 +124036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125684] = 3, + [125452] = 7, + ACTIONS(2514), 1, + anon_sym_and, + ACTIONS(2516), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 4, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1861), 30, + ACTIONS(916), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(926), 19, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -126641,68 +124080,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125727] = 3, + [125503] = 10, + ACTIONS(2514), 1, + anon_sym_and, + ACTIONS(2516), 1, + anon_sym_PLUS, + ACTIONS(2635), 1, + anon_sym_as, + ACTIONS(2637), 1, + anon_sym_if, + ACTIONS(2639), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(788), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1243), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1241), 21, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2538), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [125770] = 3, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [125560] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 4, + ACTIONS(2641), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1659), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 30, - anon_sym_DOT, + ACTIONS(1438), 26, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -126721,30 +124169,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125813] = 10, - ACTIONS(2494), 1, + [125607] = 10, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(2496), 1, + ACTIONS(2468), 1, anon_sym_LBRACK, - ACTIONS(2502), 1, + ACTIONS(2472), 1, anon_sym_STAR_STAR, - ACTIONS(2504), 1, + ACTIONS(2474), 1, anon_sym_QMARK_DOT, - ACTIONS(2524), 1, + ACTIONS(2488), 1, anon_sym_QMARK_LBRACK, STATE(1981), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1316), 4, + ACTIONS(942), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1318), 23, + ACTIONS(944), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -126768,28 +124216,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [125870] = 3, + [125664] = 10, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, + anon_sym_QMARK_DOT, + ACTIONS(2488), 1, + anon_sym_QMARK_LBRACK, + STATE(1981), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 4, + ACTIONS(942), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1705), 30, + ACTIONS(944), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -126807,36 +124263,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [125721] = 12, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, + anon_sym_QMARK_DOT, + ACTIONS(2488), 1, anon_sym_QMARK_LBRACK, - [125913] = 3, + STATE(1981), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1865), 30, + ACTIONS(2470), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2478), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(944), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -126847,33 +124312,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [125956] = 3, + [125782] = 8, + ACTIONS(2514), 1, + anon_sym_and, + ACTIONS(2516), 1, + anon_sym_PLUS, + ACTIONS(2639), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 4, + ACTIONS(788), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1199), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 30, - anon_sym_DOT, + ACTIONS(1197), 23, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -126888,115 +124357,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125999] = 4, + [125835] = 16, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, + anon_sym_QMARK_DOT, + ACTIONS(2482), 1, + anon_sym_AMP, + ACTIONS(2484), 1, + anon_sym_CARET, + ACTIONS(2488), 1, + anon_sym_QMARK_LBRACK, + STATE(1981), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 11, + ACTIONS(2470), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2478), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 15, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - ACTIONS(1681), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_not, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [125904] = 15, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, + anon_sym_QMARK_DOT, + ACTIONS(2484), 1, + anon_sym_CARET, + ACTIONS(2488), 1, anon_sym_QMARK_LBRACK, - [126044] = 3, + STATE(1981), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2590), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2470), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2588), 22, - anon_sym_import, + ACTIONS(2478), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 16, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [126087] = 4, - STATE(1645), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [125971] = 7, + ACTIONS(1483), 1, + anon_sym_LF, + ACTIONS(2647), 1, + anon_sym_not, + ACTIONS(2650), 1, + anon_sym_is, + STATE(1666), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2644), 7, + anon_sym_in, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1561), 29, - sym__newline, + ACTIONS(1481), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -127004,42 +124505,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [126132] = 6, - ACTIONS(2550), 1, - anon_sym_in, - ACTIONS(2592), 1, - anon_sym_not, - ACTIONS(2594), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + [126022] = 4, + ACTIONS(1364), 1, + anon_sym_LF, + ACTIONS(2464), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1681), 27, + ACTIONS(1362), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -127047,39 +124539,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126181] = 3, + [126067] = 14, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, + anon_sym_QMARK_DOT, + ACTIONS(2488), 1, + anon_sym_QMARK_LBRACK, + STATE(1981), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 30, + ACTIONS(2470), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2478), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [126132] = 3, + ACTIONS(1379), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1374), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -127087,43 +124630,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126224] = 5, + [126175] = 20, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, + anon_sym_QMARK_DOT, + ACTIONS(2480), 1, + anon_sym_PIPE, + ACTIONS(2482), 1, + anon_sym_AMP, + ACTIONS(2484), 1, + anon_sym_CARET, + ACTIONS(2488), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2608), 1, + anon_sym_not, + ACTIONS(2612), 1, + anon_sym_is, + STATE(1863), 1, + aux_sym_comparison_operator_repeat1, + STATE(1981), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2596), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1698), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1372), 4, + ACTIONS(2470), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2478), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1377), 26, + ACTIONS(2606), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 7, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, anon_sym_and, anon_sym_or, + [126252] = 13, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, + anon_sym_QMARK_DOT, + ACTIONS(2488), 1, + anon_sym_QMARK_LBRACK, + STATE(1981), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2470), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2478), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(944), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -127134,35 +124745,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [126271] = 4, - ACTIONS(2381), 1, - anon_sym_EQ, - ACTIONS(3), 2, + [126315] = 3, + ACTIONS(1517), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1342), 28, + ACTIONS(1519), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -127170,31 +124777,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126316] = 4, - STATE(1645), 1, - aux_sym_comparison_operator_repeat1, + [126358] = 5, + ACTIONS(2653), 1, + anon_sym_PIPE, + STATE(1673), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1188), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 29, - sym__newline, + ACTIONS(1190), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -127206,7 +124817,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -127217,25 +124827,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126361] = 3, + [126405] = 4, + ACTIONS(2432), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 5, - anon_sym_EQ, + ACTIONS(1362), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 29, - sym__newline, + ACTIONS(1364), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -127243,7 +124855,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -127257,11 +124868,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126404] = 3, + [126450] = 21, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, + anon_sym_QMARK_DOT, + ACTIONS(2480), 1, + anon_sym_PIPE, + ACTIONS(2482), 1, + anon_sym_AMP, + ACTIONS(2484), 1, + anon_sym_CARET, + ACTIONS(2488), 1, + anon_sym_QMARK_LBRACK, + STATE(1981), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(888), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1154), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2470), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2478), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(910), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [126529] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2599), 12, + ACTIONS(2560), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -127274,7 +124943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2601), 22, + ACTIONS(2558), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -127297,19 +124966,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [126447] = 4, - STATE(1776), 1, - aux_sym_dotted_name_repeat1, + [126572] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1471), 5, - anon_sym_EQ, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1354), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1469), 28, + ACTIONS(1356), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127338,29 +125007,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126492] = 5, - ACTIONS(2603), 1, - anon_sym_PIPE, - STATE(1704), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [126617] = 3, + ACTIONS(1521), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1263), 27, + ACTIONS(1523), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -127368,106 +125031,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126539] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2606), 12, - sym_string_start, - ts_builtin_sym_end, + [126660] = 21, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2466), 1, anon_sym_LPAREN, + ACTIONS(2468), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2472), 1, + anon_sym_STAR_STAR, + ACTIONS(2474), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2608), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [126582] = 4, - ACTIONS(2388), 1, - anon_sym_EQ, + ACTIONS(2480), 1, + anon_sym_PIPE, + ACTIONS(2482), 1, + anon_sym_AMP, + ACTIONS(2484), 1, + anon_sym_CARET, + ACTIONS(2488), 1, + anon_sym_QMARK_LBRACK, + STATE(1981), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(882), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1342), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2470), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2478), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2486), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(910), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [126627] = 3, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [126739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2612), 12, - sym__dedent, + ACTIONS(2540), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -127478,7 +125122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2610), 22, + ACTIONS(2538), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -127501,11 +125145,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [126670] = 3, + [126782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2614), 12, + ACTIONS(2592), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -127518,7 +125162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2616), 22, + ACTIONS(2590), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -127541,43 +125185,36 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [126713] = 8, - ACTIONS(2398), 1, - anon_sym_not, - ACTIONS(2402), 1, - anon_sym_is, - STATE(1723), 1, - aux_sym_comparison_operator_repeat1, + [126825] = 6, + ACTIONS(2514), 1, + anon_sym_and, + ACTIONS(2516), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1225), 3, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1078), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2396), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1080), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_and, + anon_sym_not, anon_sym_or, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -127585,22 +125222,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [126766] = 5, - ACTIONS(2562), 1, - anon_sym_PLUS, + [126874] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1467), 4, + ACTIONS(874), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 27, + ACTIONS(876), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127614,6 +125254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -127628,63 +125269,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126813] = 3, + [126919] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2618), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2620), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [126856] = 3, - ACTIONS(1597), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1595), 33, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(874), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(876), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -127692,7 +125297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -127700,39 +125304,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126899] = 3, - ACTIONS(1601), 1, - anon_sym_LF, - ACTIONS(5), 2, + [126964] = 5, + ACTIONS(2101), 1, + anon_sym_in, + ACTIONS(2103), 1, + anon_sym_not, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 33, + ACTIONS(1681), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, + anon_sym_RBRACK, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -127740,44 +125346,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [126942] = 10, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2496), 1, - anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, - anon_sym_QMARK_DOT, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [127011] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 4, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1327), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 23, + ACTIONS(1329), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -127795,33 +125392,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [126999] = 3, + anon_sym_QMARK_LBRACK, + [127056] = 5, + ACTIONS(2516), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 6, - anon_sym_EQ, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1068), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 28, + ACTIONS(1070), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -127835,68 +125435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127042] = 20, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2496), 1, - anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, - anon_sym_QMARK_DOT, - ACTIONS(2506), 1, - anon_sym_not, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2514), 1, - anon_sym_AMP, - ACTIONS(2516), 1, - anon_sym_CARET, - ACTIONS(2522), 1, - anon_sym_is, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1905), 1, - aux_sym_comparison_operator_repeat1, - STATE(1981), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2510), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2498), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - [127119] = 3, + [127103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2558), 12, + ACTIONS(2588), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -127909,7 +125452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2556), 22, + ACTIONS(2586), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -127932,19 +125475,21 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [127162] = 4, + [127146] = 5, + ACTIONS(2516), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1272), 4, + ACTIONS(918), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1270), 28, + ACTIONS(916), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127958,7 +125503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -127973,28 +125517,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127207] = 8, - ACTIONS(2560), 1, - anon_sym_and, - ACTIONS(2562), 1, + [127193] = 5, + ACTIONS(2516), 1, anon_sym_PLUS, - ACTIONS(2622), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1501), 4, + ACTIONS(1072), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1503), 23, + ACTIONS(1074), 27, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -128003,7 +125541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -128018,26 +125559,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127260] = 3, - ACTIONS(3), 2, + [127240] = 3, + ACTIONS(1525), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1633), 29, - sym__newline, + ACTIONS(1527), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -128045,6 +125583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -128052,39 +125591,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [127303] = 3, - ACTIONS(3), 2, + [127283] = 3, + ACTIONS(1529), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1681), 28, + ACTIONS(1531), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -128092,80 +125631,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [127346] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2576), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2578), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127389] = 4, - STATE(1757), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [127326] = 3, + ACTIONS(1533), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1561), 28, + ACTIONS(1535), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -128173,73 +125671,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [127434] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2626), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2624), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127477] = 3, + [127369] = 4, + STATE(1719), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 4, + ACTIONS(1323), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 30, + ACTIONS(1325), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -128259,67 +125720,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127520] = 3, - ACTIONS(3), 2, + [127414] = 3, + ACTIONS(1537), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2612), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1539), 33, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2610), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127563] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [127457] = 4, + STATE(1719), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 4, + ACTIONS(1342), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(1344), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -128339,33 +125801,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127606] = 3, + [127502] = 4, + ACTIONS(2656), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 4, + ACTIONS(1082), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(1084), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -128379,27 +125842,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127649] = 3, + [127547] = 4, + STATE(1719), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 4, + ACTIONS(1082), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 30, + ACTIONS(1084), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -128419,13 +125883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127692] = 3, - ACTIONS(1589), 1, + [127592] = 3, + ACTIONS(1541), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 33, + ACTIONS(1543), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -128459,11 +125923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [127735] = 3, + [127635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 12, + ACTIONS(2584), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -128476,7 +125940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2564), 22, + ACTIONS(2582), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128499,184 +125963,107 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [127778] = 3, + [127678] = 4, + STATE(1719), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2584), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2586), 22, - anon_sym_import, + ACTIONS(1188), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1190), 28, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127821] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2618), 12, - sym__dedent, - sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2620), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127864] = 3, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [127723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2626), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2624), 22, - anon_sym_import, + ACTIONS(1681), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 30, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127907] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2630), 12, - sym__dedent, - sym_string_start, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2628), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [127950] = 3, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [127766] = 4, + ACTIONS(2658), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1362), 5, + ACTIONS(1229), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 29, - sym__newline, + ACTIONS(1231), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -128685,7 +126072,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -128699,13 +126085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127993] = 3, + [127811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2614), 12, - sym__dedent, + ACTIONS(2568), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -128716,7 +126102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2616), 22, + ACTIONS(2566), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128739,53 +126125,53 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [128036] = 3, + [127854] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2606), 12, - sym__dedent, - sym_string_start, + ACTIONS(880), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(948), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2608), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [128079] = 3, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [127897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2634), 12, - sym__dedent, + ACTIONS(2580), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -128796,7 +126182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2632), 22, + ACTIONS(2578), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128819,53 +126205,53 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [128122] = 3, + [127940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2590), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1681), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2588), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [128165] = 3, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [127983] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2599), 12, - sym__dedent, + ACTIONS(2628), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -128876,7 +126262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2601), 22, + ACTIONS(2626), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128899,40 +126285,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [128208] = 10, - ACTIONS(2560), 1, - anon_sym_and, - ACTIONS(2562), 1, - anon_sym_PLUS, - ACTIONS(2622), 1, - anon_sym_or, - ACTIONS(2636), 1, - anon_sym_as, - ACTIONS(2638), 1, - anon_sym_if, + [128026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1390), 4, + ACTIONS(1082), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1388), 21, + ACTIONS(1084), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_DASH, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -128946,27 +126325,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128265] = 3, + [128069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 5, - anon_sym_EQ, + ACTIONS(1689), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 29, - sym__newline, + ACTIONS(1691), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -128986,34 +126365,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128308] = 5, + [128112] = 5, ACTIONS(2562), 1, - anon_sym_PLUS, + anon_sym_in, + ACTIONS(2660), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1447), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 27, + ACTIONS(1683), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_RBRACK, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -129028,11 +126407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128355] = 3, + [128159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2630), 12, + ACTIONS(2576), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -129045,7 +126424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2628), 22, + ACTIONS(2574), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -129068,34 +126447,32 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [128398] = 5, - ACTIONS(2562), 1, - anon_sym_PLUS, + [128202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, + ACTIONS(1677), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 27, + ACTIONS(1679), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -129110,105 +126487,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128445] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2642), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2640), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [128488] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2642), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2640), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [128531] = 3, + [128245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 5, + ACTIONS(1229), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 29, - sym__newline, + ACTIONS(1231), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -129216,7 +126514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -129230,34 +126527,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128574] = 4, - STATE(1757), 1, - aux_sym_comparison_operator_repeat1, + [128288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 5, + ACTIONS(1673), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 28, + ACTIONS(1675), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -129271,45 +126567,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128619] = 12, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2496), 1, - anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, - anon_sym_QMARK_DOT, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [128331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2500), 2, + ACTIONS(1539), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2510), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1537), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -129320,51 +126606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [128680] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2646), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2644), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [128723] = 3, + anon_sym_QMARK_LBRACK, + [128374] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2634), 12, + ACTIONS(2572), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -129377,7 +126624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2632), 22, + ACTIONS(2570), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -129400,42 +126647,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [128766] = 7, - ACTIONS(1569), 1, - anon_sym_LF, - ACTIONS(2651), 1, - anon_sym_not, - ACTIONS(2654), 1, - anon_sym_is, - STATE(1754), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [128417] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2648), 7, - anon_sym_in, + ACTIONS(1669), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1567), 23, + ACTIONS(1671), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -129443,22 +126681,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [128817] = 5, - ACTIONS(2562), 1, - anon_sym_PLUS, + [128460] = 4, + STATE(1673), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1432), 4, + ACTIONS(1259), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1430), 27, + ACTIONS(1261), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -129472,6 +126713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -129486,70 +126728,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128864] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2657), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2659), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [128907] = 8, - ACTIONS(2664), 1, - anon_sym_not, - ACTIONS(2670), 1, - anon_sym_is, - STATE(1757), 1, - aux_sym_comparison_operator_repeat1, + [128505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2667), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1567), 3, + ACTIONS(1311), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2661), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1569), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1313), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -129558,8 +126748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -129570,33 +126762,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [128960] = 4, - ACTIONS(1342), 1, - anon_sym_LF, - ACTIONS(2465), 1, - anon_sym_EQ, - ACTIONS(5), 2, + [128548] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 32, + ACTIONS(1611), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1613), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -129604,67 +126802,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [129005] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2673), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2675), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [129048] = 4, - STATE(1793), 1, - aux_sym_union_type_repeat1, + [128591] = 4, + ACTIONS(2662), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 5, + ACTIONS(1311), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 28, + ACTIONS(1313), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -129679,7 +126836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -129693,27 +126849,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129093] = 3, + [128636] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 4, + ACTIONS(1535), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 30, + ACTIONS(1533), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -129733,25 +126889,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129136] = 4, - STATE(1793), 1, - aux_sym_union_type_repeat1, + [128679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1314), 5, + ACTIONS(1531), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 28, + ACTIONS(1529), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -129774,34 +126929,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129181] = 4, - ACTIONS(2677), 1, - anon_sym_DASH_GT, + [128722] = 8, + ACTIONS(2333), 1, + anon_sym_not, + ACTIONS(2349), 1, + anon_sym_is, + STATE(1604), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 6, - anon_sym_EQ, + ACTIONS(880), 2, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(2347), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 27, + ACTIONS(2325), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 22, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -129809,33 +126973,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [129226] = 3, + [128775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 4, + ACTIONS(1527), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 30, + ACTIONS(1525), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -129855,167 +127014,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129269] = 3, + [128818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2681), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2679), 22, - anon_sym_import, + ACTIONS(1663), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1665), 30, anon_sym_DOT, - anon_sym_assert, + anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [129312] = 16, - ACTIONS(2494), 1, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(2496), 1, anon_sym_LBRACK, - ACTIONS(2502), 1, + anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2504), 1, + anon_sym_for, anon_sym_QMARK_DOT, - ACTIONS(2514), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2516), 1, anon_sym_CARET, - ACTIONS(2524), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [128861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2500), 2, + ACTIONS(1713), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2510), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1711), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [129381] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2681), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2679), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [129424] = 4, - ACTIONS(2683), 1, - anon_sym_DASH_GT, + anon_sym_QMARK_LBRACK, + [128904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 6, - anon_sym_EQ, + ACTIONS(1717), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1412), 27, + ACTIONS(1715), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -130029,76 +127134,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129469] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2568), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2570), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [129512] = 10, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2496), 1, - anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, - anon_sym_QMARK_DOT, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [128947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 4, + ACTIONS(1615), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 23, + ACTIONS(1617), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -130116,68 +127173,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [129569] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2572), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2574), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [129612] = 4, - STATE(1793), 1, - aux_sym_union_type_repeat1, + anon_sym_QMARK_LBRACK, + [128990] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1276), 5, - anon_sym_EQ, + ACTIONS(1721), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1274), 28, + ACTIONS(1719), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -130197,16 +127214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129657] = 3, + [129033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 4, + ACTIONS(1725), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1721), 30, + ACTIONS(1723), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -130237,56 +127254,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129700] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2685), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2687), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [129743] = 3, + [129076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 4, + ACTIONS(1729), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1709), 30, + ACTIONS(1727), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -130317,28 +127294,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129786] = 4, - STATE(1822), 1, - aux_sym_dotted_name_repeat1, + [129119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1479), 5, - anon_sym_EQ, + ACTIONS(1733), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1477), 28, + ACTIONS(1731), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -130358,31 +127334,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129831] = 3, - ACTIONS(1367), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129162] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1362), 33, + ACTIONS(1607), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -130390,24 +127368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [129874] = 3, + [129205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 4, + ACTIONS(1737), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 30, + ACTIONS(1735), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -130438,16 +127414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129917] = 3, + [129248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, + ACTIONS(1741), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 30, + ACTIONS(1739), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -130478,67 +127454,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129960] = 14, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2496), 1, - anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, - anon_sym_QMARK_DOT, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [129291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2500), 2, + ACTIONS(1745), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2510), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1743), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [130025] = 3, + anon_sym_QMARK_LBRACK, + [129334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 4, + ACTIONS(1749), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 30, + ACTIONS(1747), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -130569,31 +127534,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130068] = 3, - ACTIONS(1607), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129377] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 33, + ACTIONS(1753), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1751), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -130601,47 +127568,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130111] = 8, - ACTIONS(2427), 1, - anon_sym_not, - ACTIONS(2431), 1, - anon_sym_is, - STATE(1785), 1, - aux_sym_comparison_operator_repeat1, + [129420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 2, + ACTIONS(1753), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2429), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 22, - sym__newline, + ACTIONS(1751), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -130653,87 +127608,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK_LBRACK, - [130164] = 21, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2496), 1, - anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, - anon_sym_QMARK_DOT, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2514), 1, - anon_sym_AMP, - ACTIONS(2516), 1, - anon_sym_CARET, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1408), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2510), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [130243] = 4, - STATE(1645), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [129463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1757), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 29, - sym__newline, + ACTIONS(1755), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -130753,31 +127654,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130288] = 3, - ACTIONS(1633), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129506] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 33, + ACTIONS(1603), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1605), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -130785,37 +127688,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130331] = 5, - ACTIONS(2689), 1, - anon_sym_EQ, - STATE(1793), 1, - aux_sym_union_type_repeat1, + [129549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 4, + ACTIONS(1599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1342), 28, + ACTIONS(1601), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -130835,31 +127734,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130378] = 3, - ACTIONS(1629), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129592] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 33, + ACTIONS(1579), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1581), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -130867,83 +127768,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130421] = 15, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2496), 1, - anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, - anon_sym_QMARK_DOT, - ACTIONS(2516), 1, - anon_sym_CARET, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [129635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2500), 2, + ACTIONS(1519), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2510), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2518), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 16, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [130488] = 3, - ACTIONS(1611), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 33, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1517), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -130951,7 +127801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -130959,31 +127808,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130531] = 3, - ACTIONS(1625), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129678] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 33, + ACTIONS(1477), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -130991,7 +127841,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -130999,54 +127848,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130574] = 13, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2496), 1, - anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, - anon_sym_QMARK_DOT, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [129721] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2500), 2, + ACTIONS(1695), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2510), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1697), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -131057,28 +127893,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [130637] = 4, - STATE(1704), 1, - aux_sym_union_type_repeat1, + anon_sym_QMARK_LBRACK, + [129764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 5, - anon_sym_EQ, + ACTIONS(1765), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1338), 28, + ACTIONS(1763), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -131098,32 +127934,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130682] = 4, - ACTIONS(1561), 1, - anon_sym_LF, - STATE(1754), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [129807] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 32, + ACTIONS(1769), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1767), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -131131,40 +127968,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130727] = 4, - ACTIONS(1561), 1, - anon_sym_LF, - STATE(1754), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [129850] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 32, + ACTIONS(1769), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1767), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -131172,80 +128008,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130772] = 3, + [129893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2685), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2687), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [130815] = 4, - ACTIONS(1561), 1, - anon_sym_LF, - STATE(1754), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1559), 32, + ACTIONS(1773), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1771), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -131253,43 +128048,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130860] = 6, - ACTIONS(2560), 1, - anon_sym_and, - ACTIONS(2562), 1, - anon_sym_PLUS, + [129936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, + ACTIONS(1777), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 26, + ACTIONS(1775), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -131304,16 +128094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130909] = 3, + [129979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 4, + ACTIONS(1699), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 30, + ACTIONS(1701), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131344,31 +128134,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130952] = 3, - ACTIONS(1621), 1, - anon_sym_LF, - ACTIONS(5), 2, + [130022] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 33, + ACTIONS(1783), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1781), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -131376,35 +128168,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130995] = 3, + [130065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 4, + ACTIONS(1557), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1839), 30, + ACTIONS(1559), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -131424,53 +128214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131038] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2673), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2675), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [131081] = 3, + [130108] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2580), 12, - sym__dedent, + ACTIONS(2548), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -131481,7 +128231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2582), 22, + ACTIONS(2546), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -131504,34 +128254,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [131124] = 4, - ACTIONS(2691), 1, - anon_sym_DASH_GT, + [130151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1420), 6, - anon_sym_EQ, + ACTIONS(1787), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1418), 27, + ACTIONS(1785), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -131545,27 +128294,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131169] = 3, + [130194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 5, - anon_sym_EQ, + ACTIONS(1791), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1607), 29, - sym__newline, + ACTIONS(1789), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -131585,53 +128334,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131212] = 3, + [130237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1823), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2556), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_for, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [131255] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2554), 22, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_type, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [130280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2657), 12, - sym__dedent, + ACTIONS(2552), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -131642,7 +128391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2659), 22, + ACTIONS(2550), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -131665,33 +128414,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [131298] = 4, + [130323] = 4, + STATE(2780), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 7, + ACTIONS(1683), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - ACTIONS(1681), 23, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -131706,33 +128455,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131343] = 3, - ACTIONS(3), 2, + [130368] = 4, + ACTIONS(1561), 1, + anon_sym_LF, + STATE(1666), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1741), 30, + ACTIONS(1563), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -131740,91 +128488,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131386] = 21, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2496), 1, - anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, - anon_sym_QMARK_DOT, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2514), 1, - anon_sym_AMP, - ACTIONS(2516), 1, - anon_sym_CARET, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2238), 1, + [130413] = 4, + ACTIONS(1561), 1, + anon_sym_LF, + STATE(1666), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1346), 2, + ACTIONS(1563), 32, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2500), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2508), 2, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2510), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2518), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [131465] = 7, - ACTIONS(1223), 1, - anon_sym_LF, - ACTIONS(2411), 1, - anon_sym_not, - ACTIONS(2423), 1, + anon_sym_GT, anon_sym_is, - STATE(1632), 1, + anon_sym_QMARK_LBRACK, + [130458] = 4, + ACTIONS(1561), 1, + anon_sym_LF, + STATE(1666), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(1225), 23, + ACTIONS(1563), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131832,9 +128553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -131847,21 +128570,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_GT, + anon_sym_is, anon_sym_QMARK_LBRACK, - [131516] = 3, - ACTIONS(1617), 1, + [130503] = 4, + ACTIONS(1561), 1, anon_sym_LF, + STATE(1666), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 33, + ACTIONS(1563), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -131888,86 +128619,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131559] = 21, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2496), 1, - anon_sym_LBRACK, - ACTIONS(2502), 1, - anon_sym_STAR_STAR, - ACTIONS(2504), 1, - anon_sym_QMARK_DOT, - ACTIONS(2512), 1, - anon_sym_PIPE, + [130548] = 6, ACTIONS(2514), 1, - anon_sym_AMP, + anon_sym_and, ACTIONS(2516), 1, - anon_sym_CARET, - ACTIONS(2524), 1, - anon_sym_QMARK_LBRACK, - STATE(1981), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1424), 2, + ACTIONS(916), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(2500), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2508), 2, - anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_or, anon_sym_DASH, - ACTIONS(2510), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2518), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [131638] = 4, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [130597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1334), 4, + ACTIONS(1669), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1332), 28, + ACTIONS(1671), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -131987,36 +128702,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131683] = 7, - ACTIONS(2560), 1, - anon_sym_and, - ACTIONS(2562), 1, - anon_sym_PLUS, + [130640] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 4, + ACTIONS(1795), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 5, + ACTIONS(1793), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1475), 21, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -132031,27 +128742,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131734] = 3, + [130683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_EQ, + ACTIONS(1799), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 29, - sym__newline, + ACTIONS(1797), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -132071,56 +128782,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131777] = 3, + [130726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2646), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1803), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1801), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2644), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [131820] = 3, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [130769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, + ACTIONS(1807), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 30, + ACTIONS(1805), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132151,16 +128862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131863] = 3, + [130812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, + ACTIONS(1811), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 30, + ACTIONS(1809), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132191,18 +128902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131906] = 4, - STATE(1645), 1, - aux_sym_comparison_operator_repeat1, + [130855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1499), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 29, + ACTIONS(1497), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132232,27 +128942,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131951] = 3, + [130898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 4, + ACTIONS(1503), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 30, + ACTIONS(1501), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -132272,30 +128982,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131994] = 5, - STATE(1822), 1, - aux_sym_dotted_name_repeat1, + [130941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2693), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1362), 5, - anon_sym_EQ, + ACTIONS(1819), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 26, + ACTIONS(1817), 30, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -132314,28 +129022,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132041] = 4, - STATE(1793), 1, - aux_sym_union_type_repeat1, + [130984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 5, - anon_sym_EQ, + ACTIONS(1823), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 28, + ACTIONS(1821), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -132355,56 +129062,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132086] = 3, + [131027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1827), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1825), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2542), 22, - anon_sym_import, - anon_sym_DOT, - anon_sym_assert, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [132129] = 3, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [131070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 4, + ACTIONS(1831), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1675), 30, + ACTIONS(1829), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132435,22 +129142,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132172] = 6, - ACTIONS(1693), 1, - anon_sym_PLUS, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2110), 1, - anon_sym_not, + [131113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1835), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 27, + ACTIONS(1833), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132459,11 +129160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -132478,16 +129182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132221] = 3, + [131156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 4, + ACTIONS(1813), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1701), 30, + ACTIONS(1815), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132518,23 +129222,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132264] = 3, + [131199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 5, - anon_sym_EQ, + ACTIONS(1699), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1607), 28, + ACTIONS(1701), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -132557,23 +129261,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132306] = 3, + [131241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 5, - anon_sym_EQ, + ACTIONS(1813), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 28, + ACTIONS(1815), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -132596,16 +129300,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132348] = 3, + [131283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 4, + ACTIONS(1783), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1705), 29, + ACTIONS(1781), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132635,22 +129339,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132390] = 3, - ACTIONS(1709), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131325] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 32, + ACTIONS(1745), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1743), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -132658,7 +129365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132666,24 +129372,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [131367] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1615), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [131409] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1811), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_GT, + ACTIONS(1809), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132432] = 3, + [131451] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 4, + ACTIONS(1791), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1805), 29, + ACTIONS(1789), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132713,22 +129495,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132474] = 3, - ACTIONS(1721), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131493] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 32, + ACTIONS(1741), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1739), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -132736,7 +129521,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132744,30 +129528,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132516] = 3, - ACTIONS(1725), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131535] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 32, + ACTIONS(1737), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1735), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -132775,7 +129560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132783,39 +129567,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132558] = 4, - ACTIONS(1681), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131577] = 5, + ACTIONS(2101), 1, + anon_sym_in, + ACTIONS(2664), 1, + anon_sym_not, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 7, + ACTIONS(1681), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - ACTIONS(1683), 25, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [131623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1733), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1731), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132823,24 +129647,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132602] = 3, + [131665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 4, + ACTIONS(1725), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 29, + ACTIONS(1723), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132870,22 +129692,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132644] = 3, - ACTIONS(1729), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131707] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 32, + ACTIONS(1721), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1719), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -132893,7 +129718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132901,32 +129725,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132686] = 4, - ACTIONS(2689), 1, - anon_sym_EQ, + [131749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 4, + ACTIONS(1777), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1342), 28, + ACTIONS(1775), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -132949,22 +129770,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132730] = 3, - ACTIONS(1763), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131791] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 32, + ACTIONS(1807), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1805), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -132972,7 +129796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132980,30 +129803,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132772] = 3, + [131833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 6, - anon_sym_EQ, + ACTIONS(1689), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 27, + ACTIONS(1691), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -133012,7 +129833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -133027,22 +129848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132814] = 3, - ACTIONS(1733), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131875] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 32, + ACTIONS(1729), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1727), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133050,7 +129874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133058,31 +129881,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132856] = 3, + [131917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 5, - anon_sym_EQ, + ACTIONS(1717), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1625), 28, + ACTIONS(1715), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -133105,22 +129926,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132898] = 3, - ACTIONS(1783), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131959] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 32, + ACTIONS(1773), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1771), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133128,7 +129952,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133136,30 +129959,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132940] = 3, - ACTIONS(1705), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132001] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 32, + ACTIONS(1713), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1711), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133167,7 +129991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133175,30 +129998,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132982] = 3, - ACTIONS(1791), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132043] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 32, + ACTIONS(1663), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1665), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133206,7 +130030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133214,38 +130037,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133024] = 3, - ACTIONS(1795), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132085] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 32, + ACTIONS(1681), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_PLUS_EQ, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133253,30 +130076,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133066] = 3, - ACTIONS(1701), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132127] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 32, + ACTIONS(1535), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1533), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133284,7 +130108,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133292,30 +130115,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133108] = 3, - ACTIONS(1675), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132169] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 32, + ACTIONS(1531), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1529), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133323,7 +130147,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133331,30 +130154,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133150] = 3, - ACTIONS(1819), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132211] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 32, + ACTIONS(1527), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1525), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133362,7 +130186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133370,31 +130193,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133192] = 3, + [132253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 5, - anon_sym_EQ, + ACTIONS(1819), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 28, + ACTIONS(1817), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -133417,23 +130238,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133234] = 3, + [132295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1362), 5, - anon_sym_EQ, + ACTIONS(1803), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1367), 28, + ACTIONS(1801), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -133456,61 +130277,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133276] = 3, - ACTIONS(1823), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132337] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(1607), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [133318] = 3, - ACTIONS(1835), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1837), 32, + ACTIONS(1609), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133518,7 +130303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133526,30 +130310,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133360] = 6, - ACTIONS(1693), 1, - anon_sym_PLUS, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2110), 1, - anon_sym_not, + [132379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1669), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 26, + ACTIONS(1671), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133558,10 +130334,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -133576,62 +130355,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133408] = 4, + [132421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1823), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - ACTIONS(1681), 22, + ACTIONS(1821), 29, sym__newline, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [133452] = 3, - ACTIONS(1687), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1685), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133639,7 +130381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133647,31 +130388,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133494] = 3, + [132463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 4, + ACTIONS(1519), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1701), 29, - sym__newline, + ACTIONS(1517), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -133694,16 +130433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133536] = 3, + [132505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 4, + ACTIONS(1603), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 29, + ACTIONS(1605), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133733,22 +130472,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133578] = 6, - ACTIONS(2696), 1, - anon_sym_in, - ACTIONS(2698), 1, - anon_sym_not, - ACTIONS(2700), 1, - anon_sym_PLUS, + [132547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1769), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 26, + ACTIONS(1767), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133757,40 +130490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [133626] = 3, - ACTIONS(1737), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1735), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133798,7 +130498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133806,24 +130505,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133668] = 3, + [132589] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 4, + ACTIONS(1599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1721), 29, + ACTIONS(1601), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133853,16 +130550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133710] = 3, + [132631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 4, + ACTIONS(1579), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 29, + ACTIONS(1581), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133892,22 +130589,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133752] = 3, - ACTIONS(1839), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132673] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 32, + ACTIONS(1503), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1501), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -133915,7 +130615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -133923,31 +130622,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133794] = 3, + [132715] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 4, + ACTIONS(1499), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 29, - sym__newline, + ACTIONS(1497), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -133970,61 +130667,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133836] = 3, - ACTIONS(1223), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132757] = 4, + STATE(1883), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 32, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(1563), 4, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [133878] = 3, - ACTIONS(1681), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1683), 32, + ACTIONS(1561), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134032,7 +130694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134040,24 +130701,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133920] = 3, + [132801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 4, + ACTIONS(1827), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1763), 29, + ACTIONS(1825), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134087,25 +130746,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133962] = 3, - ACTIONS(3), 2, + [132843] = 3, + ACTIONS(1609), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1687), 29, - sym__newline, + ACTIONS(1607), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134113,6 +130769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134120,31 +130777,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134004] = 3, - ACTIONS(3), 2, + [132885] = 3, + ACTIONS(1711), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1733), 29, - sym__newline, + ACTIONS(1713), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134152,6 +130808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134159,25 +130816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134046] = 6, - ACTIONS(1681), 1, + [132927] = 3, + ACTIONS(1715), 1, anon_sym_LF, - ACTIONS(2702), 1, - anon_sym_in, - ACTIONS(2704), 1, - anon_sym_not, - ACTIONS(2706), 1, - anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 29, + ACTIONS(1717), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134185,11 +130838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -134207,25 +130863,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134094] = 3, - ACTIONS(3), 2, + [132969] = 3, + ACTIONS(1719), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1615), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1617), 28, + ACTIONS(1721), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134233,6 +130886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134240,19 +130894,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134136] = 3, - ACTIONS(1745), 1, + [133011] = 3, + ACTIONS(1723), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 32, + ACTIONS(1725), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134285,25 +130941,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134178] = 3, - ACTIONS(3), 2, + [133053] = 3, + ACTIONS(1727), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1737), 29, - sym__newline, + ACTIONS(1729), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134311,6 +130964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134318,28 +130972,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134220] = 3, - ACTIONS(1749), 1, - anon_sym_LF, - ACTIONS(5), 2, + [133095] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 32, + ACTIONS(1673), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1675), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134347,7 +131006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134355,33 +131013,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134262] = 3, - ACTIONS(3), 2, + [133137] = 3, + ACTIONS(1731), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1593), 28, + ACTIONS(1733), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134389,6 +131042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134396,19 +131050,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134304] = 3, - ACTIONS(1687), 1, + [133179] = 5, + ACTIONS(1683), 1, anon_sym_LF, + ACTIONS(2666), 1, + anon_sym_in, + ACTIONS(2668), 1, + anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 32, + ACTIONS(1681), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134416,11 +131076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -134441,22 +131099,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134346] = 3, - ACTIONS(1753), 1, - anon_sym_LF, - ACTIONS(5), 2, + [133225] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 32, + ACTIONS(1749), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1747), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134464,7 +131125,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134472,33 +131132,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134388] = 3, - ACTIONS(3), 2, + [133267] = 3, + ACTIONS(1735), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1741), 29, - sym__newline, + ACTIONS(1737), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134506,6 +131161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134513,38 +131169,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134430] = 3, + [133309] = 5, + ACTIONS(2101), 1, + anon_sym_in, + ACTIONS(2670), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1681), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, - sym__newline, + ACTIONS(1683), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134558,23 +131218,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134472] = 3, + [133355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 4, + ACTIONS(1557), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 29, - sym__newline, + ACTIONS(1559), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -134597,19 +131257,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134514] = 6, - ACTIONS(1681), 1, + [133397] = 3, + ACTIONS(1739), 1, anon_sym_LF, - ACTIONS(1689), 1, - anon_sym_in, - ACTIONS(1691), 1, - anon_sym_not, - ACTIONS(2112), 1, - anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 29, + ACTIONS(1741), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134617,11 +131271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -134639,13 +131296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134562] = 3, - ACTIONS(1757), 1, + [133439] = 3, + ACTIONS(1743), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 32, + ACTIONS(1745), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134678,16 +131335,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134604] = 3, + [133481] = 5, + ACTIONS(2101), 1, + anon_sym_in, + ACTIONS(2103), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 29, + ACTIONS(1683), 27, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134696,10 +131357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -134717,25 +131376,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134646] = 3, - ACTIONS(3), 2, + [133527] = 3, + ACTIONS(1747), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, + ACTIONS(1749), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134743,6 +131399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134750,22 +131407,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134688] = 3, + [133569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, + ACTIONS(1769), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 29, + ACTIONS(1767), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134795,25 +131454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134730] = 3, - ACTIONS(3), 2, + [133611] = 3, + ACTIONS(1751), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1223), 29, - sym__newline, + ACTIONS(1753), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134821,6 +131477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134828,19 +131485,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134772] = 3, - ACTIONS(1677), 1, + [133653] = 3, + ACTIONS(1751), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 32, + ACTIONS(1753), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134873,25 +131532,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134814] = 3, - ACTIONS(3), 2, + [133695] = 3, + ACTIONS(1755), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1705), 29, - sym__newline, + ACTIONS(1757), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -134899,6 +131555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -134906,29 +131563,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134856] = 3, + [133737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 4, + ACTIONS(1477), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 29, - sym__newline, + ACTIONS(1479), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -134951,13 +131610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134898] = 3, - ACTIONS(1843), 1, + [133779] = 3, + ACTIONS(1763), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 32, + ACTIONS(1765), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134990,25 +131649,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134940] = 3, - ACTIONS(3), 2, + [133821] = 3, + ACTIONS(1767), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1795), 29, - sym__newline, + ACTIONS(1769), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135016,6 +131672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -135023,31 +131680,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134982] = 3, - ACTIONS(3), 2, + [133863] = 3, + ACTIONS(1683), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1753), 29, - sym__newline, + ACTIONS(1681), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135055,6 +131711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -135062,75 +131719,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [135024] = 8, - ACTIONS(2711), 1, - anon_sym_not, - ACTIONS(2717), 1, - anon_sym_is, - STATE(1893), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2714), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(2708), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1569), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_GT, + anon_sym_is, anon_sym_QMARK_LBRACK, - [135076] = 3, - ACTIONS(3), 2, + [133905] = 3, + ACTIONS(948), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1839), 29, - sym__newline, + ACTIONS(880), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135138,6 +131750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -135145,31 +131758,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135118] = 3, - ACTIONS(3), 2, + [133947] = 3, + ACTIONS(1683), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1633), 28, + ACTIONS(1681), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135177,6 +131789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -135184,19 +131797,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135160] = 3, - ACTIONS(1867), 1, + [133989] = 3, + ACTIONS(1691), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 32, + ACTIONS(1689), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135229,13 +131844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135202] = 3, - ACTIONS(1677), 1, + [134031] = 3, + ACTIONS(1767), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 32, + ACTIONS(1769), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135268,13 +131883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135244] = 3, - ACTIONS(1761), 1, + [134073] = 5, + ACTIONS(1683), 1, anon_sym_LF, + ACTIONS(2666), 1, + anon_sym_in, + ACTIONS(2672), 1, + anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 32, + ACTIONS(1681), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135282,11 +131901,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -135307,25 +131924,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135286] = 3, - ACTIONS(3), 2, + [134119] = 3, + ACTIONS(1771), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1757), 29, - sym__newline, + ACTIONS(1773), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135333,6 +131947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -135340,22 +131955,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135328] = 3, + [134161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 4, + ACTIONS(1677), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1861), 29, + ACTIONS(1679), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -135385,25 +132002,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135370] = 3, - ACTIONS(3), 2, + [134203] = 3, + ACTIONS(1775), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1865), 29, - sym__newline, + ACTIONS(1777), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135411,6 +132025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -135418,25 +132033,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135412] = 6, - ACTIONS(1681), 1, + [134245] = 3, + ACTIONS(1781), 1, anon_sym_LF, - ACTIONS(2702), 1, - anon_sym_in, - ACTIONS(2720), 1, - anon_sym_not, - ACTIONS(2722), 1, - anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 29, + ACTIONS(1783), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135444,11 +132055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -135466,13 +132080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135460] = 3, - ACTIONS(1865), 1, + [134287] = 3, + ACTIONS(1785), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 32, + ACTIONS(1787), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135505,13 +132119,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135502] = 3, - ACTIONS(1861), 1, + [134329] = 3, + ACTIONS(1789), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 32, + ACTIONS(1791), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135544,24 +132158,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135544] = 4, - STATE(1893), 1, - aux_sym_comparison_operator_repeat1, + [134371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1787), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 28, + ACTIONS(1785), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -135584,13 +132197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135588] = 3, - ACTIONS(1857), 1, + [134413] = 3, + ACTIONS(1671), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 32, + ACTIONS(1669), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135623,23 +132236,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135630] = 3, + [134455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 4, + ACTIONS(1543), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1675), 29, - sym__newline, + ACTIONS(1541), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -135662,23 +132275,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135672] = 3, + [134497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 4, + ACTIONS(1539), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, - sym__newline, + ACTIONS(1537), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -135701,16 +132314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135714] = 3, + [134539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 4, + ACTIONS(1695), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(1697), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -135740,13 +132353,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135756] = 3, - ACTIONS(1853), 1, + [134581] = 3, + ACTIONS(1793), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 32, + ACTIONS(1795), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135779,29 +132392,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135798] = 8, - ACTIONS(2506), 1, - anon_sym_not, - ACTIONS(2522), 1, - anon_sym_is, - STATE(1914), 1, + [134623] = 4, + STATE(1883), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 2, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2520), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1223), 21, + ACTIONS(1561), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135809,8 +132411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -135822,14 +132426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, anon_sym_QMARK_LBRACK, - [135850] = 3, - ACTIONS(1849), 1, + [134667] = 3, + ACTIONS(1679), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 32, + ACTIONS(1677), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135862,13 +132471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135892] = 3, - ACTIONS(1769), 1, + [134709] = 3, + ACTIONS(1797), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 32, + ACTIONS(1799), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135901,26 +132510,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135934] = 4, - STATE(1893), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [134751] = 3, + ACTIONS(1675), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1561), 28, + ACTIONS(1673), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135928,6 +132533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -135935,28 +132541,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [135978] = 3, - ACTIONS(1833), 1, - anon_sym_LF, - ACTIONS(5), 2, + [134793] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 32, + ACTIONS(1753), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1751), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -135964,7 +132575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -135972,21 +132582,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136020] = 3, - ACTIONS(1829), 1, + [134835] = 3, + ACTIONS(1801), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 32, + ACTIONS(1803), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136019,23 +132627,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136062] = 3, + [134877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 4, + ACTIONS(1523), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 29, - sym__newline, + ACTIONS(1521), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -136058,16 +132666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136104] = 3, + [134919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 4, + ACTIONS(1753), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1843), 29, + ACTIONS(1751), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -136097,13 +132705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136146] = 3, - ACTIONS(1741), 1, + [134961] = 3, + ACTIONS(1805), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 32, + ACTIONS(1807), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136136,25 +132744,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136188] = 3, - ACTIONS(3), 2, + [135003] = 3, + ACTIONS(1671), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1809), 29, - sym__newline, + ACTIONS(1669), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136162,6 +132767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -136169,35 +132775,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136230] = 4, - STATE(1893), 1, - aux_sym_comparison_operator_repeat1, + [135045] = 5, + ACTIONS(2674), 1, + anon_sym_in, + ACTIONS(2676), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 28, + ACTIONS(1683), 27, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -136215,13 +132824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136274] = 4, - STATE(1893), 1, + [135091] = 4, + STATE(1883), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -136255,52 +132864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136318] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1787), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1789), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136360] = 3, - ACTIONS(1773), 1, + [135135] = 3, + ACTIONS(1809), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 32, + ACTIONS(1811), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136333,13 +132903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136402] = 3, - ACTIONS(1773), 1, + [135177] = 3, + ACTIONS(1665), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 32, + ACTIONS(1663), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136372,16 +132942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136444] = 3, + [135219] = 5, + ACTIONS(2674), 1, + anon_sym_in, + ACTIONS(2678), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 29, + ACTIONS(1683), 27, sym__newline, anon_sym_DOT, anon_sym_as, @@ -136390,10 +132964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -136411,63 +132983,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136486] = 4, - ACTIONS(1687), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1685), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - ACTIONS(1683), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_not, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136530] = 3, + [135265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 4, + ACTIONS(1374), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 29, - sym__newline, + ACTIONS(1379), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -136490,16 +133022,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136572] = 3, + [135307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 4, + ACTIONS(1757), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 29, + ACTIONS(1755), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -136529,25 +133061,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136614] = 3, - ACTIONS(3), 2, + [135349] = 3, + ACTIONS(1817), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1813), 29, - sym__newline, + ACTIONS(1819), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136555,6 +133084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -136562,29 +133092,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136656] = 3, + [135391] = 4, + ACTIONS(2630), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 4, + ACTIONS(1362), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1817), 29, - sym__newline, + ACTIONS(1364), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -136607,25 +133140,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136698] = 3, - ACTIONS(3), 2, + [135435] = 3, + ACTIONS(1821), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1857), 29, - sym__newline, + ACTIONS(1823), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136633,6 +133163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -136640,114 +133171,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136740] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1767), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1769), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + [135477] = 8, + ACTIONS(2683), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(2689), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [136782] = 3, + STATE(1883), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 4, + ACTIONS(1481), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2686), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2680), 5, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [136824] = 3, - ACTIONS(1777), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1775), 32, + ACTIONS(1483), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -136755,21 +133222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, anon_sym_QMARK_LBRACK, - [136866] = 3, - ACTIONS(1781), 1, + [135529] = 3, + ACTIONS(1825), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 32, + ACTIONS(1827), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136802,13 +133262,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136908] = 3, - ACTIONS(1817), 1, + [135571] = 3, + ACTIONS(1829), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 32, + ACTIONS(1831), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136841,13 +133301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136950] = 3, - ACTIONS(1813), 1, + [135613] = 3, + ACTIONS(1833), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 32, + ACTIONS(1835), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136880,32 +133340,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [136992] = 4, + [135655] = 4, + STATE(1883), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 10, - sym__newline, + ACTIONS(1561), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - ACTIONS(1681), 19, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -136920,13 +133380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137036] = 3, - ACTIONS(1809), 1, + [135699] = 3, + ACTIONS(1815), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 32, + ACTIONS(1813), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136959,25 +133419,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137078] = 3, - ACTIONS(3), 2, + [135741] = 3, + ACTIONS(1761), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1849), 29, - sym__newline, + ACTIONS(1759), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -136985,48 +133442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [137120] = 6, - ACTIONS(2696), 1, - anon_sym_in, - ACTIONS(2724), 1, - anon_sym_not, - ACTIONS(2726), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1683), 4, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1681), 26, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -137034,31 +133450,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137168] = 3, - ACTIONS(3), 2, + [135783] = 3, + ACTIONS(1701), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 29, - sym__newline, + ACTIONS(1699), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -137066,6 +133481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -137073,31 +133489,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137210] = 3, - ACTIONS(3), 2, + [135825] = 3, + ACTIONS(1697), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 29, - sym__newline, + ACTIONS(1695), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -137105,6 +133520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -137112,62 +133528,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137252] = 3, + [135867] = 8, + ACTIONS(2608), 1, + anon_sym_not, + ACTIONS(2612), 1, + anon_sym_is, + STATE(1874), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 4, + ACTIONS(880), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1777), 29, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2606), 5, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [137294] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1599), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1601), 28, + ACTIONS(948), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137175,10 +133566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -137190,19 +133579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [137336] = 3, - ACTIONS(1705), 1, + [135919] = 3, + ACTIONS(1581), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 32, + ACTIONS(1579), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137235,16 +133619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137378] = 3, + [135961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 4, + ACTIONS(1831), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1781), 29, + ACTIONS(1829), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -137274,25 +133658,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137420] = 3, - ACTIONS(3), 2, + [136003] = 3, + ACTIONS(1601), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 28, + ACTIONS(1599), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -137300,6 +133681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -137307,22 +133689,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137462] = 3, + [136045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 29, + ACTIONS(1683), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -137352,25 +133736,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137504] = 3, - ACTIONS(3), 2, + [136087] = 3, + ACTIONS(1605), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 28, + ACTIONS(1603), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -137378,6 +133759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -137385,19 +133767,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137546] = 3, - ACTIONS(1805), 1, + [136129] = 5, + ACTIONS(1683), 1, anon_sym_LF, + ACTIONS(1841), 1, + anon_sym_in, + ACTIONS(1843), 1, + anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 32, + ACTIONS(1681), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137405,11 +133793,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_in, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -137430,35 +133816,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137588] = 6, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2728), 1, - anon_sym_not, - ACTIONS(2730), 1, - anon_sym_PLUS, + [136175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 5, + ACTIONS(1795), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 25, + ACTIONS(1793), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -137472,16 +133855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137636] = 3, + [136217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 4, + ACTIONS(1611), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1709), 29, + ACTIONS(1613), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -137511,25 +133894,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137678] = 3, - ACTIONS(3), 2, + [136259] = 3, + ACTIONS(1613), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1801), 29, - sym__newline, + ACTIONS(1611), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -137537,6 +133917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -137544,41 +133925,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137720] = 6, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2732), 1, - anon_sym_not, - ACTIONS(2734), 1, - anon_sym_PLUS, + [136301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 5, + ACTIONS(1835), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 25, + ACTIONS(1833), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -137592,13 +133972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137768] = 3, - ACTIONS(1801), 1, + [136343] = 3, + ACTIONS(1617), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 32, + ACTIONS(1615), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137631,16 +134011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137810] = 3, + [136385] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 4, + ACTIONS(1669), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 29, + ACTIONS(1671), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -137670,22 +134050,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137852] = 3, - ACTIONS(1789), 1, - anon_sym_LF, - ACTIONS(5), 2, + [136427] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 32, + ACTIONS(1799), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1797), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -137693,7 +134076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -137701,70 +134083,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [137894] = 5, - ACTIONS(2736), 1, - anon_sym_PLUS, + [136469] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1447), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [137939] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1803), 4, + ACTIONS(880), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1805), 28, + ACTIONS(948), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -137787,69 +134128,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137980] = 11, - ACTIONS(1091), 1, - anon_sym_DOT, - ACTIONS(1549), 1, - anon_sym_QMARK_DOT, - ACTIONS(2736), 1, - anon_sym_PLUS, - ACTIONS(2738), 1, - anon_sym_as, - ACTIONS(2740), 1, - anon_sym_if, - ACTIONS(2742), 1, - anon_sym_and, - ACTIONS(2744), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1388), 11, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1390), 12, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [138037] = 5, - ACTIONS(2746), 1, - anon_sym_EQ, - STATE(1441), 1, - aux_sym_union_type_repeat1, + [136511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 4, + ACTIONS(1759), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1342), 26, + ACTIONS(1761), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -137873,70 +134167,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138082] = 11, - ACTIONS(1091), 1, - anon_sym_DOT, - ACTIONS(1549), 1, - anon_sym_QMARK_DOT, - ACTIONS(2736), 1, - anon_sym_PLUS, - ACTIONS(2738), 1, - anon_sym_as, - ACTIONS(2740), 1, - anon_sym_if, - ACTIONS(2742), 1, - anon_sym_and, - ACTIONS(2744), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2750), 11, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2748), 12, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [138139] = 5, - ACTIONS(2752), 1, - anon_sym_PLUS, + [136553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1467), 4, + ACTIONS(1765), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 25, + ACTIONS(1763), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -137945,6 +134191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -137959,24 +134206,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138184] = 5, - ACTIONS(2752), 1, - anon_sym_PLUS, + [136595] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1447), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 25, + ACTIONS(1683), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, @@ -137985,6 +134230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -137999,25 +134245,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138229] = 5, - ACTIONS(2752), 1, - anon_sym_PLUS, + [136637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, + ACTIONS(1813), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 25, + ACTIONS(1815), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -138025,6 +134268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -138039,32 +134283,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138274] = 5, - ACTIONS(2752), 1, + [136678] = 8, + ACTIONS(2692), 1, + anon_sym_and, + ACTIONS(2694), 1, + anon_sym_or, + ACTIONS(2696), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1432), 4, + ACTIONS(1199), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1430), 25, - anon_sym_DOT, + ACTIONS(1197), 21, anon_sym_as, anon_sym_if, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -138079,28 +134326,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138319] = 11, - ACTIONS(1091), 1, - anon_sym_DOT, - ACTIONS(1549), 1, - anon_sym_QMARK_DOT, - ACTIONS(2736), 1, + [136729] = 5, + ACTIONS(2698), 1, anon_sym_PLUS, - ACTIONS(2738), 1, - anon_sym_as, - ACTIONS(2740), 1, - anon_sym_if, - ACTIONS(2742), 1, - anon_sym_and, - ACTIONS(2744), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, + STATE(1035), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2756), 11, + ACTIONS(1070), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -138108,41 +134343,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2754), 12, + ACTIONS(1068), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_lambda, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [138376] = 9, - ACTIONS(1091), 1, - anon_sym_DOT, - ACTIONS(1549), 1, - anon_sym_QMARK_DOT, - ACTIONS(2736), 1, + [136774] = 5, + ACTIONS(2698), 1, anon_sym_PLUS, - ACTIONS(2742), 1, - anon_sym_and, - ACTIONS(2744), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1068), 2, + STATE(1035), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1503), 11, + ACTIONS(916), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -138150,11 +134383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1501), 14, + ACTIONS(918), 17, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, @@ -138163,29 +134398,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_filter, anon_sym_map, anon_sym_not, + anon_sym_and, + anon_sym_or, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [138429] = 6, - ACTIONS(2752), 1, + [136819] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1791), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1789), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - ACTIONS(2758), 1, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [136860] = 6, + ACTIONS(2692), 1, anon_sym_and, + ACTIONS(2696), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(916), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_or, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [136907] = 6, + ACTIONS(2692), 1, + anon_sym_and, + ACTIONS(2696), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1441), 4, + ACTIONS(1078), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 24, + ACTIONS(1080), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138210,16 +134526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138476] = 3, + [136954] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1669), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 28, + ACTIONS(1671), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138248,30 +134564,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138517] = 3, + [136995] = 7, + ACTIONS(2692), 1, + anon_sym_and, + ACTIONS(2696), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 4, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(924), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1223), 28, + ACTIONS(916), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(926), 19, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -138286,16 +134606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138558] = 3, + [137044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 4, + ACTIONS(1689), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 28, + ACTIONS(1691), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138324,31 +134644,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138599] = 4, + [137085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1733), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 9, + ACTIONS(1731), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - ACTIONS(1681), 19, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -138363,22 +134682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138642] = 6, - ACTIONS(2760), 1, - anon_sym_in, - ACTIONS(2762), 1, - anon_sym_not, - ACTIONS(2764), 1, - anon_sym_PLUS, + [137126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 25, + ACTIONS(1601), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138386,10 +134699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -138404,54 +134720,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138689] = 3, + [137167] = 5, + ACTIONS(2698), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1675), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(1035), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1074), 12, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1072), 17, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [138730] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [137212] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 4, + ACTIONS(1749), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1701), 28, + ACTIONS(1747), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138480,60 +134798,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138771] = 3, + [137253] = 9, + ACTIONS(1265), 1, + anon_sym_DOT, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(2698), 1, + anon_sym_PLUS, + ACTIONS(2700), 1, + anon_sym_and, + ACTIONS(2702), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1705), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + STATE(1035), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1197), 11, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1199), 14, + anon_sym_as, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, - anon_sym_and, - anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [137306] = 5, + ACTIONS(2696), 1, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [138812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 4, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(918), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1709), 28, + ACTIONS(916), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -138541,7 +134868,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -138556,16 +134882,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138853] = 3, + [137351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 4, + ACTIONS(1787), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1763), 28, + ACTIONS(1785), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138594,22 +134920,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138894] = 3, + [137392] = 5, + ACTIONS(2696), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 4, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1072), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 28, + ACTIONS(1074), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -138617,7 +134946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -138632,16 +134960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138935] = 3, + [137437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 4, + ACTIONS(1669), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 28, + ACTIONS(1671), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138670,16 +134998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138976] = 3, + [137478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 4, + ACTIONS(1737), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1795), 28, + ACTIONS(1735), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138708,112 +135036,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139017] = 6, - ACTIONS(2760), 1, - anon_sym_in, - ACTIONS(2766), 1, + [137519] = 20, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2768), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1683), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1681), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2139), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2141), 1, anon_sym_LBRACK, - anon_sym_STAR_STAR, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2706), 1, + anon_sym_STAR_STAR, + ACTIONS(2712), 1, anon_sym_PIPE, + ACTIONS(2714), 1, anon_sym_AMP, + ACTIONS(2716), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [139064] = 3, + STATE(1211), 1, + sym_argument_list, + STATE(1995), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2704), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2708), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2710), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2718), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(910), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [139105] = 6, - ACTIONS(2752), 1, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [137594] = 11, + ACTIONS(1265), 1, + anon_sym_DOT, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(2698), 1, anon_sym_PLUS, - ACTIONS(2758), 1, + ACTIONS(2700), 1, anon_sym_and, + ACTIONS(2702), 1, + anon_sym_or, + ACTIONS(2722), 1, + anon_sym_as, + ACTIONS(2724), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1035), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1322), 4, + ACTIONS(2726), 11, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2720), 12, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [137651] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1783), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1320), 24, + ACTIONS(1781), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -138828,16 +135175,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139152] = 3, + [137692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 4, + ACTIONS(1795), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 28, + ACTIONS(1793), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138866,16 +135213,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139193] = 3, + [137733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 4, + ACTIONS(1799), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 28, + ACTIONS(1797), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138904,16 +135251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139234] = 3, + [137774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 4, + ACTIONS(1803), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1839), 28, + ACTIONS(1801), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138942,72 +135289,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139275] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1845), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1843), 28, + [137815] = 11, + ACTIONS(1265), 1, anon_sym_DOT, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(2698), 1, + anon_sym_PLUS, + ACTIONS(2700), 1, + anon_sym_and, + ACTIONS(2702), 1, + anon_sym_or, + ACTIONS(2722), 1, anon_sym_as, + ACTIONS(2724), 1, anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1035), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2730), 11, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2728), 12, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, anon_sym_not, - anon_sym_and, - anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [137872] = 20, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2706), 1, + anon_sym_STAR_STAR, + ACTIONS(2712), 1, + anon_sym_PIPE, + ACTIONS(2714), 1, + anon_sym_AMP, + ACTIONS(2716), 1, + anon_sym_CARET, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(888), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2704), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2708), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2710), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2718), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(910), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [139316] = 7, - ACTIONS(2752), 1, - anon_sym_PLUS, - ACTIONS(2758), 1, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_and, + anon_sym_or, + [137947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1473), 4, + ACTIONS(1729), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 5, + ACTIONS(1727), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1475), 19, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -139022,16 +135428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139365] = 3, + [137988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 4, + ACTIONS(1807), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1865), 28, + ACTIONS(1805), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139060,26 +135466,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139406] = 3, + [138029] = 10, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2706), 1, + anon_sym_STAR_STAR, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 4, + ACTIONS(942), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1861), 28, + ACTIONS(944), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -139097,17 +135511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [139447] = 3, + [138084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 4, + ACTIONS(1811), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1857), 28, + ACTIONS(1809), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139136,26 +135549,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139488] = 3, + [138125] = 10, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2706), 1, + anon_sym_STAR_STAR, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 4, + ACTIONS(942), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 28, + ACTIONS(944), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -139173,34 +135594,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [138180] = 12, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - [139529] = 3, + ACTIONS(2706), 1, + anon_sym_STAR_STAR, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1849), 28, + ACTIONS(2704), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2710), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(944), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -139211,31 +135641,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [139570] = 10, - ACTIONS(2173), 1, + [138239] = 10, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, + ACTIONS(2706), 1, anon_sym_STAR_STAR, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1316), 4, + ACTIONS(936), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1318), 21, + ACTIONS(938), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139257,71 +135686,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [139625] = 20, - ACTIONS(2076), 1, + [138294] = 20, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2056), 1, anon_sym_is, - ACTIONS(2173), 1, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, + ACTIONS(2706), 1, anon_sym_STAR_STAR, - ACTIONS(2778), 1, + ACTIONS(2712), 1, anon_sym_PIPE, - ACTIONS(2780), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2782), 1, + ACTIONS(2716), 1, anon_sym_CARET, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2772), 2, + ACTIONS(2704), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2774), 2, + ACTIONS(2708), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2776), 2, + ACTIONS(2710), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2784), 2, + ACTIONS(2718), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1223), 5, + ACTIONS(910), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(1354), 5, + [138369] = 5, + ACTIONS(2732), 1, anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [139700] = 3, + ACTIONS(2734), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 28, + ACTIONS(1683), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139329,10 +135762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -139350,16 +135781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139741] = 3, + [138414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 4, + ACTIONS(1777), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 28, + ACTIONS(1775), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139388,66 +135819,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139782] = 20, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2173), 1, + [138455] = 16, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, + ACTIONS(2706), 1, anon_sym_STAR_STAR, - ACTIONS(2778), 1, - anon_sym_PIPE, - ACTIONS(2780), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2782), 1, + ACTIONS(2716), 1, anon_sym_CARET, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2772), 2, + ACTIONS(2704), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2774), 2, + ACTIONS(2708), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2776), 2, + ACTIONS(2710), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2784), 2, + ACTIONS(2718), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1223), 5, + ACTIONS(944), 13, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [139857] = 3, + anon_sym_is, + [138522] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 4, + ACTIONS(1819), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -139481,16 +135908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139898] = 3, + [138563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 4, + ACTIONS(1823), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1813), 28, + ACTIONS(1821), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139519,16 +135946,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139939] = 3, + [138604] = 15, + ACTIONS(2139), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_QMARK_DOT, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2706), 1, + anon_sym_STAR_STAR, + ACTIONS(2716), 1, + anon_sym_CARET, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 4, + ACTIONS(942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2704), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2708), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2710), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 14, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [138669] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1827), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1809), 28, + ACTIONS(1825), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139557,16 +136034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [139980] = 3, + [138710] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 4, + ACTIONS(1831), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1705), 28, + ACTIONS(1829), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139595,56 +136072,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [140021] = 5, - ACTIONS(2736), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1439), 12, - sym_string_start, - anon_sym_COMMA, + [138751] = 14, + ACTIONS(2139), 1, anon_sym_LPAREN, + ACTIONS(2141), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, + ACTIONS(2163), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2706), 1, + anon_sym_STAR_STAR, + STATE(1211), 1, + sym_argument_list, + STATE(2184), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(942), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2704), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2708), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1441), 17, + ACTIONS(2710), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(944), 15, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [140066] = 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [138814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 4, + ACTIONS(1603), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 28, + ACTIONS(1605), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139673,16 +136159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [140107] = 3, + [138855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 4, + ACTIONS(1835), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1801), 28, + ACTIONS(1833), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139711,30 +136197,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [140148] = 10, - ACTIONS(2173), 1, + [138896] = 13, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, + ACTIONS(2706), 1, anon_sym_STAR_STAR, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(942), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 21, + ACTIONS(2704), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2708), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2710), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(944), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139742,10 +136235,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -139756,34 +136245,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [140203] = 10, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, - anon_sym_STAR_STAR, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [138957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 4, + ACTIONS(1773), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1358), 21, + ACTIONS(1771), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -139801,43 +136282,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [140258] = 12, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, - anon_sym_STAR_STAR, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [138998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2772), 2, + ACTIONS(1713), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2776), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1711), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -139848,194 +136320,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [140317] = 16, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, - anon_sym_STAR_STAR, - ACTIONS(2780), 1, - anon_sym_AMP, - ACTIONS(2782), 1, - anon_sym_CARET, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [139039] = 5, + ACTIONS(2736), 1, + anon_sym_EQ, + STATE(1387), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2772), 2, + ACTIONS(1362), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2774), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2776), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 13, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1364), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [140384] = 15, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, - anon_sym_STAR_STAR, - ACTIONS(2782), 1, - anon_sym_CARET, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [139084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2772), 2, + ACTIONS(1769), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2774), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2776), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1358), 14, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1767), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [140449] = 14, - ACTIONS(2173), 1, + anon_sym_QMARK_LBRACK, + [139125] = 20, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, + ACTIONS(2706), 1, anon_sym_STAR_STAR, - STATE(1299), 1, + ACTIONS(2712), 1, + anon_sym_PIPE, + ACTIONS(2714), 1, + anon_sym_AMP, + ACTIONS(2716), 1, + anon_sym_CARET, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2772), 2, + ACTIONS(2704), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2774), 2, + ACTIONS(2708), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2776), 2, + ACTIONS(2710), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2784), 2, + ACTIONS(2718), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1358), 15, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(910), 5, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [140512] = 13, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, - anon_sym_STAR_STAR, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(948), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [139200] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1360), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2772), 2, + ACTIONS(1717), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2774), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2776), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1358), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1715), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -140046,16 +136491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [140573] = 3, + anon_sym_QMARK_LBRACK, + [139241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 4, + ACTIONS(1721), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1789), 28, + ACTIONS(1719), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140084,16 +136530,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [140614] = 3, + [139282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 4, + ACTIONS(1769), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1781), 28, + ACTIONS(1767), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140122,16 +136568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [140655] = 3, + [139323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 4, + ACTIONS(1725), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1777), 28, + ACTIONS(1723), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140160,126 +136606,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [140696] = 20, - ACTIONS(2076), 1, + [139364] = 20, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2056), 1, anon_sym_is, - ACTIONS(2173), 1, + ACTIONS(2139), 1, anon_sym_LPAREN, - ACTIONS(2175), 1, + ACTIONS(2141), 1, anon_sym_LBRACK, - ACTIONS(2179), 1, + ACTIONS(2147), 1, anon_sym_QMARK_DOT, - ACTIONS(2181), 1, + ACTIONS(2163), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, + ACTIONS(2706), 1, anon_sym_STAR_STAR, - ACTIONS(2778), 1, + ACTIONS(2712), 1, anon_sym_PIPE, - ACTIONS(2780), 1, + ACTIONS(2714), 1, anon_sym_AMP, - ACTIONS(2782), 1, + ACTIONS(2716), 1, anon_sym_CARET, - STATE(1299), 1, + STATE(1211), 1, sym_argument_list, - STATE(2238), 1, + STATE(2184), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2772), 2, + ACTIONS(2704), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2774), 2, + ACTIONS(2708), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2776), 2, + ACTIONS(2710), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2784), 2, + ACTIONS(2718), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1223), 5, + ACTIONS(910), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(1354), 5, + [139439] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1765), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1763), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [140771] = 20, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, anon_sym_is, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, - anon_sym_STAR_STAR, - ACTIONS(2778), 1, - anon_sym_PIPE, - ACTIONS(2780), 1, - anon_sym_AMP, - ACTIONS(2782), 1, - anon_sym_CARET, - STATE(1299), 1, - sym_argument_list, - STATE(2238), 1, - aux_sym_comparison_operator_repeat1, + [139480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2772), 2, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2774), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2776), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2784), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1223), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [139521] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1759), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1761), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [140846] = 3, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [139562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 4, + ACTIONS(1579), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 28, + ACTIONS(1581), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140308,16 +136813,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [140887] = 3, + [139603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 4, + ACTIONS(880), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 28, + ACTIONS(948), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140346,16 +136851,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [140928] = 3, + [139644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1769), 28, + ACTIONS(1683), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140384,16 +136889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [140969] = 3, + [139685] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 4, + ACTIONS(1607), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 28, + ACTIONS(1609), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140422,16 +136927,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141010] = 3, + [139726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 4, + ACTIONS(1611), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 28, + ACTIONS(1613), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140460,16 +136965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141051] = 3, + [139767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 4, + ACTIONS(1745), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 28, + ACTIONS(1743), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140498,30 +137003,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141092] = 3, + [139808] = 10, + ACTIONS(2692), 1, + anon_sym_and, + ACTIONS(2694), 1, + anon_sym_or, + ACTIONS(2696), 1, + anon_sym_PLUS, + ACTIONS(2738), 1, + anon_sym_as, + ACTIONS(2740), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 4, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1243), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 28, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(1241), 19, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -140536,16 +137048,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141133] = 3, + [139863] = 11, + ACTIONS(1265), 1, + anon_sym_DOT, + ACTIONS(1643), 1, + anon_sym_QMARK_DOT, + ACTIONS(2698), 1, + anon_sym_PLUS, + ACTIONS(2700), 1, + anon_sym_and, + ACTIONS(2702), 1, + anon_sym_or, + ACTIONS(2722), 1, + anon_sym_as, + ACTIONS(2724), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1035), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1241), 11, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1243), 12, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [139920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 4, + ACTIONS(1757), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 28, + ACTIONS(1755), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140574,16 +137132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141174] = 3, + [139961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, + ACTIONS(1753), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 28, + ACTIONS(1751), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140612,16 +137170,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141215] = 3, + [140002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 4, + ACTIONS(1615), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 28, + ACTIONS(1617), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140650,22 +137208,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141256] = 3, + [140043] = 5, + ACTIONS(2696), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 4, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1068), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 28, + ACTIONS(1070), 25, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -140673,7 +137234,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -140688,16 +137248,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141297] = 3, + [140088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, + ACTIONS(1699), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 28, + ACTIONS(1701), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140726,16 +137286,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141338] = 3, + [140129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, + ACTIONS(1741), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 28, + ACTIONS(1739), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140764,16 +137324,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141379] = 3, + [140170] = 5, + ACTIONS(2101), 1, + anon_sym_in, + ACTIONS(2103), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 28, + ACTIONS(1683), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140781,10 +137345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -140802,16 +137364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141420] = 3, + [140215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 4, + ACTIONS(1673), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 28, + ACTIONS(1675), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140840,16 +137402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141461] = 3, + [140256] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 4, + ACTIONS(1695), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1721), 28, + ACTIONS(1697), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140878,16 +137440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141502] = 3, + [140297] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 4, + ACTIONS(1677), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 28, + ACTIONS(1679), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -140916,126 +137478,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141543] = 5, - ACTIONS(2736), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1465), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1467), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [141588] = 20, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - ACTIONS(2173), 1, - anon_sym_LPAREN, - ACTIONS(2175), 1, - anon_sym_LBRACK, - ACTIONS(2179), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2770), 1, - anon_sym_STAR_STAR, - ACTIONS(2778), 1, - anon_sym_PIPE, - ACTIONS(2780), 1, - anon_sym_AMP, - ACTIONS(2782), 1, - anon_sym_CARET, - STATE(1299), 1, - sym_argument_list, - STATE(2049), 1, - aux_sym_comparison_operator_repeat1, + [140338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2772), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2774), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2776), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2784), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1223), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [141663] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1753), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1687), 7, + ACTIONS(1751), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - ACTIONS(1681), 21, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -141050,22 +137516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141706] = 6, - ACTIONS(1693), 1, - anon_sym_PLUS, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2110), 1, - anon_sym_not, + [140379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 4, + ACTIONS(1663), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 25, + ACTIONS(1665), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -141073,10 +137533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -141091,37 +137554,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141753] = 10, - ACTIONS(2752), 1, - anon_sym_PLUS, - ACTIONS(2758), 1, - anon_sym_and, - ACTIONS(2786), 1, - anon_sym_as, - ACTIONS(2788), 1, - anon_sym_if, - ACTIONS(2790), 1, - anon_sym_or, + [140420] = 5, + ACTIONS(2732), 1, + anon_sym_in, + ACTIONS(2742), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1390), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1388), 19, + ACTIONS(1683), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_not, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -141136,35 +137594,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141808] = 8, - ACTIONS(2752), 1, - anon_sym_PLUS, - ACTIONS(2758), 1, - anon_sym_and, - ACTIONS(2790), 1, - anon_sym_or, + [140465] = 4, + ACTIONS(2736), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1501), 4, + ACTIONS(1362), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1503), 21, + ACTIONS(1364), 26, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -141179,69 +137632,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [141859] = 5, - ACTIONS(2736), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1068), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1432), 17, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [141904] = 8, - ACTIONS(2076), 1, + [140507] = 8, + ACTIONS(2747), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2753), 1, anon_sym_is, - STATE(2050), 1, + STATE(1993), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 2, + ACTIONS(1481), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1350), 2, + ACTIONS(2750), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1354), 5, + ACTIONS(2744), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 19, + ACTIONS(1483), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -141261,29 +137674,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK_LBRACK, - [141954] = 8, - ACTIONS(2795), 1, + [140557] = 8, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2801), 1, + ACTIONS(2056), 1, anon_sym_is, - STATE(2047), 1, + STATE(1996), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, + ACTIONS(880), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2798), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2792), 5, + ACTIONS(910), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1569), 19, + ACTIONS(948), 19, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -141303,18 +137716,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK_LBRACK, - [142004] = 4, - ACTIONS(2746), 1, - anon_sym_EQ, + [140607] = 4, + STATE(1993), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1340), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1342), 26, + ACTIONS(1561), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -141341,13 +137754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [142046] = 4, - STATE(2047), 1, + [140649] = 4, + STATE(1993), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -141379,13 +137792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [142088] = 4, - STATE(2047), 1, + [140691] = 4, + STATE(1993), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -141417,13 +137830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [142130] = 4, - STATE(2047), 1, + [140733] = 4, + STATE(1993), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, @@ -141455,27 +137868,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [142172] = 4, - STATE(2047), 1, - aux_sym_comparison_operator_repeat1, + [140775] = 5, + ACTIONS(2101), 1, + anon_sym_in, + ACTIONS(2756), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 4, + ACTIONS(1681), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 26, + ACTIONS(1683), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -141493,21 +137906,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [142214] = 5, - STATE(1031), 1, + [140818] = 5, + STATE(1028), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2804), 2, + ACTIONS(2758), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1479), 4, + ACTIONS(1020), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(1477), 23, + ACTIONS(1022), 23, anon_sym_COMMA, anon_sym_COLON, anon_sym_DASH_GT, @@ -141531,52 +137944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [142257] = 6, - ACTIONS(2108), 1, - anon_sym_in, - ACTIONS(2806), 1, - anon_sym_not, - ACTIONS(2808), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1683), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1681), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [142302] = 4, - ACTIONS(2812), 1, + [140861] = 4, + ACTIONS(2762), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2814), 12, + ACTIONS(2764), 12, sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, @@ -141589,7 +137963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2810), 13, + ACTIONS(2760), 13, anon_sym_DOT, anon_sym_lambda, anon_sym_all, @@ -141603,41 +137977,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [142339] = 14, - ACTIONS(790), 1, + [140898] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2820), 1, + ACTIONS(2770), 1, anon_sym_RPAREN, - ACTIONS(2822), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2780), 1, sym_float, - STATE(1842), 1, + STATE(1804), 1, sym_string, - STATE(1850), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2671), 1, + STATE(2593), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141645,41 +138019,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142395] = 14, - ACTIONS(473), 1, + [140954] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2834), 1, - anon_sym_COLON, - ACTIONS(2836), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2780), 1, sym_float, - STATE(1257), 1, + ACTIONS(2782), 1, + anon_sym_RPAREN, + STATE(1804), 1, sym_string, - STATE(1266), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2787), 1, + STATE(2588), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141687,41 +138061,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142451] = 14, - ACTIONS(431), 1, + [141010] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2790), 1, + anon_sym_RBRACK, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, - anon_sym_RBRACE, - ACTIONS(2862), 1, + ACTIONS(2796), 1, sym_float, - STATE(1342), 1, + STATE(1507), 1, sym_string, - STATE(1401), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2858), 1, + STATE(2755), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141729,41 +138103,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142507] = 14, - ACTIONS(790), 1, + [141066] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2806), 1, + anon_sym_RBRACE, + ACTIONS(2812), 1, sym_float, - ACTIONS(2864), 1, - anon_sym_RPAREN, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2652), 1, + STATE(1351), 1, + sym_string, + STATE(2779), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141771,41 +138145,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142563] = 14, - ACTIONS(539), 1, + [141122] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2872), 1, - anon_sym_RBRACK, - ACTIONS(2874), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2780), 1, sym_float, - STATE(1515), 1, + ACTIONS(2814), 1, + anon_sym_RPAREN, + STATE(1804), 1, sym_string, - STATE(1517), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2776), 1, + STATE(2596), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141813,83 +138187,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142619] = 14, + [141178] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2880), 1, + ACTIONS(2816), 1, anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2864), 1, - sym_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2860), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2858), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1410), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [142675] = 14, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(2832), 1, - sym_identifier, - ACTIONS(2836), 1, - anon_sym_LPAREN, - ACTIONS(2838), 1, - anon_sym_LBRACK, - ACTIONS(2840), 1, - anon_sym_LBRACE, - ACTIONS(2846), 1, - sym_float, - ACTIONS(2882), 1, - anon_sym_COLON, - STATE(1257), 1, + STATE(1351), 1, sym_string, - STATE(1266), 1, - sym_dotted_name, - STATE(2879), 1, + STATE(2690), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141897,41 +138229,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142731] = 14, - ACTIONS(539), 1, + [141234] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2820), 1, + anon_sym_COLON, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2884), 1, - anon_sym_RBRACK, - STATE(1515), 1, - sym_string, - STATE(1517), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2868), 1, + STATE(1287), 1, + sym_string, + STATE(2784), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141939,41 +138271,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142787] = 14, - ACTIONS(790), 1, + [141290] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2886), 1, + ACTIONS(2834), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1804), 1, sym_string, - STATE(1850), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2664), 1, + STATE(2617), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141981,41 +138313,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142843] = 14, - ACTIONS(431), 1, + [141346] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2888), 1, - anon_sym_RBRACE, - STATE(1342), 1, + ACTIONS(2836), 1, + anon_sym_RPAREN, + STATE(1804), 1, sym_string, - STATE(1401), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2752), 1, + STATE(2608), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142023,41 +138355,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142899] = 14, + [141402] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2890), 1, + ACTIONS(2838), 1, anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2870), 1, + STATE(1351), 1, + sym_string, + STATE(2790), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142065,31 +138397,31 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142955] = 14, + [141458] = 14, ACTIONS(539), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2892), 1, + ACTIONS(2840), 1, anon_sym_RBRACK, - STATE(1515), 1, + STATE(1507), 1, sym_string, - STATE(1517), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2794), 1, + STATE(2720), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, @@ -142099,7 +138431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142107,41 +138439,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143011] = 14, - ACTIONS(790), 1, + [141514] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2894), 1, + ACTIONS(2842), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1804), 1, sym_string, - STATE(1850), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2678), 1, + STATE(2611), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142149,125 +138481,72 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143067] = 14, - ACTIONS(790), 1, - sym_string_start, - ACTIONS(2816), 1, - sym_identifier, - ACTIONS(2818), 1, - anon_sym_LPAREN, - ACTIONS(2822), 1, - anon_sym_LBRACK, - ACTIONS(2824), 1, - anon_sym_LBRACE, - ACTIONS(2830), 1, - sym_float, - ACTIONS(2896), 1, - anon_sym_RPAREN, - STATE(1842), 1, - sym_string, - STATE(1850), 1, - sym_dotted_name, - STATE(2673), 1, - sym_type, + [141570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2826), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1871), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143123] = 14, - ACTIONS(539), 1, + ACTIONS(641), 12, sym_string_start, - ACTIONS(2866), 1, - sym_identifier, - ACTIONS(2868), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, sym_float, - ACTIONS(2898), 1, - anon_sym_RBRACK, - STATE(1515), 1, - sym_string, - STATE(1517), 1, - sym_dotted_name, - STATE(2731), 1, - sym_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2844), 13, + anon_sym_DOT, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(533), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1521), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143179] = 14, - ACTIONS(431), 1, + sym_none, + sym_undefined, + [141604] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2900), 1, - anon_sym_RBRACE, - STATE(1342), 1, + ACTIONS(2846), 1, + anon_sym_RPAREN, + STATE(1804), 1, sym_string, - STATE(1401), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2741), 1, + STATE(2607), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142275,41 +138554,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143235] = 14, + [141660] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2902), 1, + ACTIONS(2848), 1, anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2793), 1, + STATE(1351), 1, + sym_string, + STATE(2692), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142317,41 +138596,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143291] = 14, - ACTIONS(539), 1, + [141716] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2904), 1, - anon_sym_RBRACK, - STATE(1515), 1, - sym_string, - STATE(1517), 1, + ACTIONS(2850), 1, + anon_sym_RBRACE, + STATE(1348), 1, sym_dotted_name, - STATE(2890), 1, + STATE(1351), 1, + sym_string, + STATE(2764), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142359,41 +138638,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143347] = 14, + [141772] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2906), 1, + ACTIONS(2852), 1, anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2749), 1, + STATE(1351), 1, + sym_string, + STATE(2792), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142401,41 +138680,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143403] = 14, - ACTIONS(431), 1, + [141828] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2908), 1, - anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + ACTIONS(2854), 1, + anon_sym_COLON, + STATE(1285), 1, sym_dotted_name, - STATE(2738), 1, + STATE(1287), 1, + sym_string, + STATE(2715), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142443,41 +138722,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143459] = 14, - ACTIONS(790), 1, + [141884] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2816), 1, - sym_identifier, ACTIONS(2818), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2822), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2910), 1, - anon_sym_RPAREN, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + ACTIONS(2856), 1, + anon_sym_COLON, + STATE(1285), 1, sym_dotted_name, - STATE(2651), 1, + STATE(1287), 1, + sym_string, + STATE(2830), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142485,41 +138764,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143515] = 14, - ACTIONS(790), 1, + [141940] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2912), 1, - anon_sym_RPAREN, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + ACTIONS(2858), 1, + anon_sym_RBRACE, + STATE(1348), 1, sym_dotted_name, - STATE(2658), 1, + STATE(1351), 1, + sym_string, + STATE(2701), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142527,41 +138806,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143571] = 14, - ACTIONS(55), 1, + [141996] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2914), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2916), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2812), 1, sym_float, - STATE(1701), 1, - sym_string, - STATE(1743), 1, + ACTIONS(2860), 1, + anon_sym_RBRACE, + STATE(1348), 1, sym_dotted_name, - STATE(2697), 1, + STATE(1351), 1, + sym_string, + STATE(2747), 1, sym_type, - STATE(3031), 1, - sym_schema_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142569,41 +138848,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143627] = 14, - ACTIONS(790), 1, + [142052] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2928), 1, - anon_sym_RPAREN, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + ACTIONS(2862), 1, + anon_sym_RBRACE, + STATE(1348), 1, sym_dotted_name, - STATE(2653), 1, + STATE(1351), 1, + sym_string, + STATE(2808), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142611,41 +138890,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143683] = 14, - ACTIONS(539), 1, + [142108] = 14, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(2864), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2930), 1, - anon_sym_RBRACK, - STATE(1515), 1, + STATE(1723), 1, sym_string, - STATE(1517), 1, + STATE(1724), 1, sym_dotted_name, - STATE(2759), 1, + STATE(2625), 1, sym_type, + STATE(2936), 1, + sym_schema_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142653,41 +138932,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143739] = 14, - ACTIONS(790), 1, + [142164] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2932), 1, - anon_sym_RPAREN, - STATE(1842), 1, + ACTIONS(2878), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_string, - STATE(1850), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2650), 1, + STATE(2726), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142695,41 +138974,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143795] = 14, + [142220] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2934), 1, + ACTIONS(2880), 1, anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2801), 1, + STATE(1351), 1, + sym_string, + STATE(2665), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142737,41 +139016,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143851] = 14, - ACTIONS(431), 1, + [142276] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2936), 1, - anon_sym_RBRACE, - STATE(1342), 1, + ACTIONS(2882), 1, + anon_sym_RPAREN, + STATE(1804), 1, sym_string, - STATE(1401), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2815), 1, + STATE(2589), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142779,41 +139058,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143907] = 14, - ACTIONS(473), 1, + [142332] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2938), 1, + ACTIONS(2884), 1, anon_sym_COLON, - STATE(1257), 1, - sym_string, - STATE(1266), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2839), 1, + STATE(1287), 1, + sym_string, + STATE(2807), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142821,41 +139100,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143963] = 14, - ACTIONS(539), 1, + [142388] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2940), 1, - anon_sym_RBRACK, - STATE(1515), 1, + ACTIONS(2886), 1, + anon_sym_RPAREN, + STATE(1804), 1, sym_string, - STATE(1517), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2828), 1, + STATE(2616), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142863,41 +139142,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144019] = 14, - ACTIONS(790), 1, + [142444] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2816), 1, - sym_identifier, ACTIONS(2818), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2822), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2942), 1, - anon_sym_RPAREN, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + ACTIONS(2888), 1, + anon_sym_COLON, + STATE(1285), 1, sym_dotted_name, - STATE(2665), 1, + STATE(1287), 1, + sym_string, + STATE(2708), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142905,41 +139184,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144075] = 14, - ACTIONS(431), 1, + [142500] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2944), 1, - anon_sym_RBRACE, - STATE(1342), 1, + ACTIONS(2890), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_string, - STATE(1401), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2798), 1, + STATE(2809), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142947,41 +139226,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144131] = 14, + [142556] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2946), 1, + ACTIONS(2892), 1, anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2878), 1, + STATE(1351), 1, + sym_string, + STATE(2800), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142989,41 +139268,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144187] = 14, - ACTIONS(431), 1, + [142612] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2948), 1, - anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + ACTIONS(2894), 1, + anon_sym_COLON, + STATE(1285), 1, sym_dotted_name, - STATE(2885), 1, + STATE(1287), 1, + sym_string, + STATE(2791), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143031,31 +139310,31 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144243] = 14, + [142668] = 14, ACTIONS(539), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2950), 1, + ACTIONS(2896), 1, anon_sym_RBRACK, - STATE(1515), 1, + STATE(1507), 1, sym_string, - STATE(1517), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2814), 1, + STATE(2704), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, @@ -143065,7 +139344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143073,41 +139352,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144299] = 14, - ACTIONS(790), 1, + [142724] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2952), 1, + ACTIONS(2898), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1804), 1, sym_string, - STATE(1850), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2662), 1, + STATE(2602), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143115,41 +139394,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144355] = 14, - ACTIONS(790), 1, + [142780] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2954), 1, - anon_sym_RPAREN, - STATE(1842), 1, + ACTIONS(2900), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_string, - STATE(1850), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2667), 1, + STATE(2812), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143157,41 +139436,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144411] = 14, - ACTIONS(790), 1, + [142836] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2956), 1, + ACTIONS(2902), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1804), 1, sym_string, - STATE(1850), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2666), 1, + STATE(2600), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143199,41 +139478,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144467] = 14, - ACTIONS(473), 1, + [142892] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2958), 1, - anon_sym_COLON, - STATE(1257), 1, + ACTIONS(2904), 1, + anon_sym_RPAREN, + STATE(1804), 1, sym_string, - STATE(1266), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2862), 1, + STATE(2592), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143241,41 +139520,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144523] = 14, + [142948] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2960), 1, + ACTIONS(2906), 1, anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2855), 1, + STATE(1351), 1, + sym_string, + STATE(2756), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143283,72 +139562,83 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144579] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(643), 12, + [143004] = 14, + ACTIONS(467), 1, sym_string_start, + ACTIONS(2818), 1, + sym_identifier, + ACTIONS(2822), 1, anon_sym_LPAREN, + ACTIONS(2824), 1, anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(2832), 1, sym_float, - ACTIONS(2962), 13, - anon_sym_DOT, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, + ACTIONS(2908), 1, + anon_sym_COLON, + STATE(1285), 1, + sym_dotted_name, + STATE(1287), 1, + sym_string, + STATE(2774), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2830), 3, sym_integer, - sym_identifier, sym_true, sym_false, - sym_none, - sym_undefined, - [144613] = 14, - ACTIONS(473), 1, + ACTIONS(2828), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1283), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [143060] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2964), 1, - anon_sym_COLON, - STATE(1257), 1, + ACTIONS(2910), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_string, - STATE(1266), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2866), 1, + STATE(2777), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143356,41 +139646,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144669] = 14, + [143116] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2966), 1, + ACTIONS(2912), 1, anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2874), 1, + STATE(1351), 1, + sym_string, + STATE(2674), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143398,41 +139688,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144725] = 14, - ACTIONS(473), 1, + [143172] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2968), 1, - anon_sym_COLON, - STATE(1257), 1, - sym_string, - STATE(1266), 1, + ACTIONS(2914), 1, + anon_sym_RBRACE, + STATE(1348), 1, sym_dotted_name, - STATE(2831), 1, + STATE(1351), 1, + sym_string, + STATE(2670), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143440,41 +139730,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144781] = 14, + [143228] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2970), 1, + ACTIONS(2916), 1, anon_sym_RBRACE, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2848), 1, + STATE(1351), 1, + sym_string, + STATE(2680), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143482,41 +139772,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144837] = 14, - ACTIONS(473), 1, + [143284] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2972), 1, - anon_sym_COLON, - STATE(1257), 1, + ACTIONS(2918), 1, + anon_sym_RPAREN, + STATE(1804), 1, sym_string, - STATE(1266), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2817), 1, + STATE(2598), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143524,41 +139814,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144893] = 14, - ACTIONS(539), 1, + [143340] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2974), 1, - anon_sym_RBRACK, - STATE(1515), 1, - sym_string, - STATE(1517), 1, + ACTIONS(2920), 1, + anon_sym_COLON, + STATE(1285), 1, sym_dotted_name, - STATE(2829), 1, + STATE(1287), 1, + sym_string, + STATE(2717), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143566,41 +139856,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144949] = 14, - ACTIONS(790), 1, + [143396] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2976), 1, + ACTIONS(2922), 1, anon_sym_RPAREN, - STATE(1842), 1, + STATE(1804), 1, sym_string, - STATE(1850), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2663), 1, + STATE(2606), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143608,41 +139898,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145005] = 14, - ACTIONS(473), 1, + [143452] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2978), 1, - anon_sym_COLON, - STATE(1257), 1, + ACTIONS(2924), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_string, - STATE(1266), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2799), 1, + STATE(2766), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143650,41 +139940,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145061] = 14, - ACTIONS(431), 1, + [143508] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2980), 1, - anon_sym_RBRACE, - STATE(1342), 1, + ACTIONS(2926), 1, + anon_sym_RPAREN, + STATE(1804), 1, sym_string, - STATE(1401), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2778), 1, + STATE(2590), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143692,41 +139982,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145117] = 14, - ACTIONS(473), 1, + [143564] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2982), 1, + ACTIONS(2928), 1, anon_sym_COLON, - STATE(1257), 1, - sym_string, - STATE(1266), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2770), 1, + STATE(1287), 1, + sym_string, + STATE(2733), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143734,41 +140024,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145173] = 14, - ACTIONS(431), 1, + [143620] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2984), 1, - anon_sym_RBRACE, - STATE(1342), 1, + ACTIONS(2930), 1, + anon_sym_RBRACK, + STATE(1507), 1, sym_string, - STATE(1401), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2784), 1, + STATE(2730), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143776,41 +140066,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145229] = 14, - ACTIONS(790), 1, + [143676] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2816), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2818), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2822), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2986), 1, - anon_sym_RPAREN, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + ACTIONS(2932), 1, + anon_sym_RBRACE, + STATE(1348), 1, sym_dotted_name, - STATE(2672), 1, + STATE(1351), 1, + sym_string, + STATE(2706), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143818,74 +140108,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145285] = 8, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(1318), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1559), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [145328] = 13, - ACTIONS(539), 1, + [143732] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2812), 1, sym_float, - STATE(1515), 1, - sym_string, - STATE(1517), 1, + ACTIONS(2934), 1, + anon_sym_RBRACE, + STATE(1348), 1, sym_dotted_name, - STATE(2836), 1, + STATE(1351), 1, + sym_string, + STATE(2751), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143893,39 +140150,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145381] = 13, + [143788] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + ACTIONS(2936), 1, + anon_sym_RBRACE, + STATE(1348), 1, sym_dotted_name, - STATE(2804), 1, + STATE(1351), 1, + sym_string, + STATE(2687), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143933,39 +140192,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145434] = 13, - ACTIONS(431), 1, + [143844] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2852), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2988), 1, + ACTIONS(2938), 1, sym_identifier, - ACTIONS(2990), 1, + ACTIONS(2940), 1, anon_sym_LPAREN, - STATE(1306), 1, + STATE(1491), 1, sym_type, - STATE(1342), 1, + STATE(1723), 1, sym_string, - STATE(1401), 1, + STATE(1724), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143973,39 +140232,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145487] = 13, - ACTIONS(431), 1, + [143897] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2852), 1, + ACTIONS(2784), 1, + sym_identifier, + ACTIONS(2786), 1, + anon_sym_LPAREN, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2988), 1, - sym_identifier, - ACTIONS(2990), 1, - anon_sym_LPAREN, - STATE(1316), 1, - sym_type, - STATE(1342), 1, + STATE(1507), 1, sym_string, - STATE(1401), 1, + STATE(1508), 1, sym_dotted_name, + STATE(2685), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144013,39 +140272,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145540] = 13, + [143950] = 13, ACTIONS(431), 1, sym_string_start, - ACTIONS(2852), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2988), 1, + ACTIONS(2942), 1, sym_identifier, - ACTIONS(2990), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - STATE(1304), 1, + STATE(1219), 1, sym_type, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1348), 1, sym_dotted_name, + STATE(1351), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144053,39 +140312,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145593] = 13, - ACTIONS(473), 1, + [144003] = 13, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2780), 1, sym_float, - STATE(1257), 1, + STATE(1804), 1, sym_string, - STATE(1266), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2660), 1, + STATE(2663), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144093,39 +140352,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145646] = 13, - ACTIONS(431), 1, + [144056] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2848), 1, - sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2866), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2876), 1, sym_float, - STATE(1342), 1, + ACTIONS(2946), 1, + sym_identifier, + STATE(1723), 1, sym_string, - STATE(1401), 1, + STATE(1724), 1, sym_dotted_name, - STATE(2811), 1, + STATE(2628), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144133,39 +140392,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145699] = 13, - ACTIONS(790), 1, + [144109] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2816), 1, - sym_identifier, ACTIONS(2818), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(2822), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2832), 1, sym_float, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2689), 1, + STATE(1287), 1, + sym_string, + STATE(2799), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144173,39 +140432,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145752] = 13, - ACTIONS(473), 1, + [144162] = 13, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2992), 1, + ACTIONS(2948), 1, sym_identifier, - ACTIONS(2994), 1, + ACTIONS(2950), 1, anon_sym_LPAREN, - STATE(1257), 1, + STATE(1694), 1, + sym_type, + STATE(1804), 1, sym_string, - STATE(1266), 1, + STATE(1805), 1, sym_dotted_name, - STATE(1446), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144213,39 +140472,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145805] = 13, - ACTIONS(431), 1, + [144215] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2832), 1, sym_float, - STATE(1342), 1, - sym_string, - STATE(1401), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2819), 1, + STATE(1287), 1, + sym_string, + STATE(2591), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144253,39 +140512,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145858] = 13, + [144268] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(2916), 1, + ACTIONS(2866), 1, anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(2946), 1, sym_identifier, - STATE(1701), 1, + STATE(1723), 1, sym_string, - STATE(1743), 1, + STATE(1724), 1, sym_dotted_name, - STATE(2859), 1, + STATE(2648), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144293,80 +140552,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145911] = 14, - ACTIONS(790), 1, + [144321] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2822), 1, + ACTIONS(2866), 1, + anon_sym_LPAREN, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2998), 1, + ACTIONS(2946), 1, sym_identifier, - ACTIONS(3000), 1, - anon_sym_LPAREN, - STATE(1787), 1, - sym_type, - STATE(1838), 1, - sym_union_type, - STATE(1842), 1, + STATE(1723), 1, sym_string, - STATE(1850), 1, + STATE(1724), 1, sym_dotted_name, + STATE(2618), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 6, + STATE(1726), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [145966] = 13, - ACTIONS(993), 1, + [144374] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(3002), 1, - sym_identifier, - ACTIONS(3004), 1, + ACTIONS(2866), 1, anon_sym_LPAREN, - ACTIONS(3006), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(3008), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(3014), 1, + ACTIONS(2876), 1, sym_float, - STATE(1607), 1, - sym_type, - STATE(1791), 1, + ACTIONS(2946), 1, + sym_identifier, + STATE(1723), 1, sym_string, - STATE(1800), 1, + STATE(1724), 1, sym_dotted_name, + STATE(2746), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3012), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(3010), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1812), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144374,39 +140632,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146019] = 13, - ACTIONS(473), 1, + [144427] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2832), 1, sym_float, - STATE(1257), 1, - sym_string, - STATE(1266), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2867), 1, + STATE(1287), 1, + sym_string, + STATE(2707), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144414,39 +140672,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146072] = 13, - ACTIONS(473), 1, + [144480] = 13, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2952), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2954), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2956), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2958), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2964), 1, sym_float, - STATE(1257), 1, + STATE(1036), 1, + sym_type, + STATE(1040), 1, sym_string, - STATE(1266), 1, + STATE(1041), 1, sym_dotted_name, - STATE(2865), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2962), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2960), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1043), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144454,80 +140712,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146125] = 14, - ACTIONS(896), 1, + [144533] = 13, + ACTIONS(800), 1, sym_string_start, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3018), 1, - anon_sym_LPAREN, - ACTIONS(3020), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2780), 1, sym_float, - STATE(326), 1, + ACTIONS(2948), 1, + sym_identifier, + ACTIONS(2950), 1, + anon_sym_LPAREN, + STATE(1696), 1, sym_type, - STATE(639), 1, - sym_union_type, - STATE(671), 1, - sym_dotted_name, - STATE(672), 1, + STATE(1804), 1, sym_string, + STATE(1805), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(670), 6, + STATE(1806), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [146180] = 13, - ACTIONS(1111), 1, + [144586] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(3030), 1, - sym_identifier, - ACTIONS(3032), 1, + ACTIONS(2866), 1, anon_sym_LPAREN, - ACTIONS(3034), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(3036), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(3042), 1, + ACTIONS(2876), 1, sym_float, - STATE(1042), 1, - sym_type, - STATE(1069), 1, - sym_dotted_name, - STATE(1080), 1, + ACTIONS(2946), 1, + sym_identifier, + STATE(1723), 1, sym_string, + STATE(1724), 1, + sym_dotted_name, + STATE(2619), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3040), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(3038), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1078), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144535,39 +140792,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146233] = 13, - ACTIONS(473), 1, + [144639] = 13, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2780), 1, sym_float, - STATE(1257), 1, + STATE(1804), 1, sym_string, - STATE(1266), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2813), 1, + STATE(2657), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144575,39 +140832,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146286] = 13, - ACTIONS(896), 1, + [144692] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(3016), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(3018), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(3020), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2796), 1, sym_float, - STATE(355), 1, - sym_type, - STATE(671), 1, - sym_dotted_name, - STATE(672), 1, + STATE(1507), 1, sym_string, + STATE(1508), 1, + sym_dotted_name, + STATE(2694), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(670), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144615,79 +140872,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146339] = 13, - ACTIONS(993), 1, + [144745] = 14, + ACTIONS(800), 1, sym_string_start, - ACTIONS(3002), 1, - sym_identifier, - ACTIONS(3004), 1, - anon_sym_LPAREN, - ACTIONS(3006), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(3008), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(3014), 1, + ACTIONS(2780), 1, sym_float, - STATE(1628), 1, + ACTIONS(2948), 1, + sym_identifier, + ACTIONS(2950), 1, + anon_sym_LPAREN, + STATE(1655), 1, sym_type, - STATE(1791), 1, + STATE(1804), 1, sym_string, - STATE(1800), 1, + STATE(1805), 1, sym_dotted_name, + STATE(1881), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3012), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(3010), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1812), 7, + STATE(1806), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [146392] = 13, - ACTIONS(539), 1, + [144800] = 13, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2866), 1, - sym_identifier, - ACTIONS(2868), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2780), 1, sym_float, - STATE(1515), 1, + ACTIONS(2948), 1, + sym_identifier, + ACTIONS(2950), 1, + anon_sym_LPAREN, + STATE(1698), 1, + sym_type, + STATE(1804), 1, sym_string, - STATE(1517), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2872), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144695,39 +140953,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146445] = 13, - ACTIONS(55), 1, + [144853] = 13, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(2918), 1, + ACTIONS(2966), 1, + sym_identifier, + ACTIONS(2968), 1, + anon_sym_LPAREN, + ACTIONS(2970), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2972), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2978), 1, sym_float, - ACTIONS(3044), 1, - sym_identifier, - ACTIONS(3046), 1, - anon_sym_LPAREN, - STATE(1627), 1, + STATE(324), 1, sym_type, - STATE(1701), 1, + STATE(428), 1, sym_string, - STATE(1743), 1, + STATE(429), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2976), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2974), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(430), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144735,39 +140993,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146498] = 13, - ACTIONS(896), 1, + [144906] = 13, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(3016), 1, + ACTIONS(2952), 1, sym_identifier, - ACTIONS(3018), 1, + ACTIONS(2954), 1, anon_sym_LPAREN, - ACTIONS(3020), 1, + ACTIONS(2956), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(2958), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2964), 1, sym_float, - STATE(350), 1, + STATE(998), 1, sym_type, - STATE(671), 1, - sym_dotted_name, - STATE(672), 1, + STATE(1040), 1, sym_string, + STATE(1041), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(2962), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(2960), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(670), 7, + STATE(1043), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144775,39 +141033,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146551] = 13, - ACTIONS(790), 1, + [144959] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2816), 1, - sym_identifier, - ACTIONS(2818), 1, - anon_sym_LPAREN, - ACTIONS(2822), 1, - anon_sym_LBRACK, ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2832), 1, sym_float, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + ACTIONS(2980), 1, + sym_identifier, + ACTIONS(2982), 1, + anon_sym_LPAREN, + STATE(1285), 1, sym_dotted_name, - STATE(2698), 1, + STATE(1287), 1, + sym_string, + STATE(1434), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144815,39 +141073,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146604] = 13, - ACTIONS(993), 1, + [145012] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(3002), 1, - sym_identifier, - ACTIONS(3004), 1, - anon_sym_LPAREN, - ACTIONS(3006), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(3008), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(3014), 1, + ACTIONS(2796), 1, sym_float, - STATE(1606), 1, + ACTIONS(2984), 1, + sym_identifier, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(1392), 1, sym_type, - STATE(1791), 1, + STATE(1507), 1, sym_string, - STATE(1800), 1, + STATE(1508), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3012), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(3010), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1812), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144855,39 +141113,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146657] = 13, - ACTIONS(55), 1, + [145065] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2916), 1, + ACTIONS(2818), 1, + sym_identifier, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2996), 1, - sym_identifier, - STATE(1701), 1, - sym_string, - STATE(1743), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2721), 1, + STATE(1287), 1, + sym_string, + STATE(2711), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144895,39 +141153,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146710] = 13, - ACTIONS(473), 1, + [145118] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2832), 1, sym_float, - STATE(1257), 1, - sym_string, - STATE(1266), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2850), 1, + STATE(1287), 1, + sym_string, + STATE(2702), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144935,39 +141193,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146763] = 13, - ACTIONS(993), 1, + [145171] = 13, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(3002), 1, + ACTIONS(2988), 1, sym_identifier, - ACTIONS(3004), 1, + ACTIONS(2990), 1, anon_sym_LPAREN, - ACTIONS(3006), 1, + ACTIONS(2992), 1, anon_sym_LBRACK, - ACTIONS(3008), 1, + ACTIONS(2994), 1, anon_sym_LBRACE, - ACTIONS(3014), 1, + ACTIONS(3000), 1, sym_float, - STATE(1584), 1, + STATE(1560), 1, sym_type, - STATE(1791), 1, - sym_string, - STATE(1800), 1, + STATE(1692), 1, sym_dotted_name, + STATE(1693), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3012), 3, + ACTIONS(2998), 3, sym_integer, sym_true, sym_false, - ACTIONS(3010), 5, + ACTIONS(2996), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1812), 7, + STATE(1691), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144975,80 +141233,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146816] = 14, - ACTIONS(55), 1, + [145224] = 13, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(2918), 1, + ACTIONS(2988), 1, + sym_identifier, + ACTIONS(2990), 1, + anon_sym_LPAREN, + ACTIONS(2992), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2994), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(3000), 1, sym_float, - ACTIONS(3044), 1, - sym_identifier, - ACTIONS(3046), 1, - anon_sym_LPAREN, - STATE(1524), 1, + STATE(1550), 1, sym_type, - STATE(1701), 1, - sym_string, - STATE(1706), 1, - sym_union_type, - STATE(1743), 1, + STATE(1692), 1, sym_dotted_name, + STATE(1693), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2998), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2996), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 6, + STATE(1691), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [146871] = 13, - ACTIONS(896), 1, + [145277] = 13, + ACTIONS(800), 1, sym_string_start, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3018), 1, - anon_sym_LPAREN, - ACTIONS(3020), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2780), 1, sym_float, - STATE(342), 1, + ACTIONS(2948), 1, + sym_identifier, + ACTIONS(2950), 1, + anon_sym_LPAREN, + STATE(1701), 1, sym_type, - STATE(671), 1, - sym_dotted_name, - STATE(672), 1, + STATE(1804), 1, sym_string, + STATE(1805), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(670), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145056,79 +141313,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146924] = 13, - ACTIONS(55), 1, + [145330] = 14, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(2918), 1, + ACTIONS(2952), 1, + sym_identifier, + ACTIONS(2954), 1, + anon_sym_LPAREN, + ACTIONS(2956), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2958), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2964), 1, sym_float, - ACTIONS(3044), 1, - sym_identifier, - ACTIONS(3046), 1, - anon_sym_LPAREN, - STATE(1619), 1, + STATE(1020), 1, sym_type, - STATE(1701), 1, + STATE(1040), 1, sym_string, - STATE(1743), 1, + STATE(1041), 1, sym_dotted_name, + STATE(1059), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2962), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2960), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1043), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [146977] = 13, + [145385] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(2916), 1, + ACTIONS(2866), 1, anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(2946), 1, sym_identifier, - STATE(1701), 1, + STATE(1723), 1, sym_string, - STATE(1743), 1, + STATE(1724), 1, sym_dotted_name, - STATE(2724), 1, + STATE(2659), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145136,39 +141394,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147030] = 13, - ACTIONS(473), 1, + [145438] = 13, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2780), 1, sym_float, - STATE(1257), 1, + STATE(1804), 1, sym_string, - STATE(1266), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2845), 1, + STATE(2656), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145176,39 +141434,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147083] = 13, - ACTIONS(920), 1, + [145491] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3050), 1, - anon_sym_LPAREN, - ACTIONS(3052), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(3054), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(3060), 1, + ACTIONS(2796), 1, sym_float, - STATE(329), 1, + ACTIONS(2984), 1, + sym_identifier, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(1442), 1, sym_type, - STATE(773), 1, - sym_dotted_name, - STATE(775), 1, + STATE(1507), 1, sym_string, + STATE(1508), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3058), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(3056), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(770), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145216,79 +141474,115 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147136] = 13, - ACTIONS(539), 1, + [145544] = 14, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(2870), 1, + ACTIONS(2966), 1, + sym_identifier, + ACTIONS(2968), 1, + anon_sym_LPAREN, + ACTIONS(2970), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2972), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2978), 1, sym_float, - ACTIONS(3062), 1, - sym_identifier, - ACTIONS(3064), 1, - anon_sym_LPAREN, - STATE(1492), 1, + STATE(339), 1, sym_type, - STATE(1515), 1, + STATE(406), 1, + sym_union_type, + STATE(428), 1, sym_string, - STATE(1517), 1, + STATE(429), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2976), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2974), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(430), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [147189] = 13, - ACTIONS(55), 1, + [145599] = 8, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + STATE(1254), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1563), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1561), 12, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + [145642] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(2980), 1, sym_identifier, - STATE(1701), 1, - sym_string, - STATE(1743), 1, + ACTIONS(3002), 1, + anon_sym_LPAREN, + STATE(1285), 1, sym_dotted_name, - STATE(2722), 1, + STATE(1287), 1, + sym_string, + STATE(1460), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145296,79 +141590,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147242] = 13, - ACTIONS(539), 1, + [145695] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2870), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(3062), 1, + ACTIONS(2980), 1, sym_identifier, - ACTIONS(3064), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - STATE(1487), 1, - sym_type, - STATE(1515), 1, - sym_string, - STATE(1517), 1, + STATE(1285), 1, sym_dotted_name, + STATE(1287), 1, + sym_string, + STATE(1960), 1, + sym_type, + STATE(1992), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1283), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [147295] = 13, - ACTIONS(473), 1, + [145750] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2832), 1, sym_float, - STATE(1257), 1, - sym_string, - STATE(1266), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2832), 1, + STATE(1287), 1, + sym_string, + STATE(2713), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145376,80 +141671,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147348] = 14, - ACTIONS(1111), 1, + [145803] = 13, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(3030), 1, + ACTIONS(2988), 1, sym_identifier, - ACTIONS(3032), 1, + ACTIONS(2990), 1, anon_sym_LPAREN, - ACTIONS(3034), 1, + ACTIONS(2992), 1, anon_sym_LBRACK, - ACTIONS(3036), 1, + ACTIONS(2994), 1, anon_sym_LBRACE, - ACTIONS(3042), 1, + ACTIONS(3000), 1, sym_float, - STATE(1028), 1, + STATE(1540), 1, sym_type, - STATE(1069), 1, + STATE(1692), 1, sym_dotted_name, - STATE(1080), 1, + STATE(1693), 1, sym_string, - STATE(1088), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3040), 3, + ACTIONS(2998), 3, sym_integer, sym_true, sym_false, - ACTIONS(3038), 5, + ACTIONS(2996), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1078), 6, + STATE(1691), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [147403] = 13, - ACTIONS(55), 1, + [145856] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2918), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(3044), 1, + ACTIONS(2980), 1, sym_identifier, - ACTIONS(3046), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - STATE(1596), 1, - sym_type, - STATE(1701), 1, - sym_string, - STATE(1743), 1, + STATE(1285), 1, sym_dotted_name, + STATE(1287), 1, + sym_string, + STATE(1427), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145457,80 +141751,114 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147456] = 14, - ACTIONS(473), 1, + [145909] = 13, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(2766), 1, + sym_identifier, + ACTIONS(2768), 1, + anon_sym_LPAREN, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2780), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1257), 1, + STATE(1804), 1, sym_string, - STATE(1266), 1, + STATE(1805), 1, sym_dotted_name, - STATE(1963), 1, + STATE(2641), 1, sym_type, - STATE(2048), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 6, + STATE(1806), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [147511] = 13, - ACTIONS(896), 1, + [145962] = 8, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + STATE(1254), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1563), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1561), 12, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + [146005] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3016), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(3018), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(3020), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2832), 1, sym_float, - STATE(339), 1, - sym_type, - STATE(671), 1, + STATE(1285), 1, sym_dotted_name, - STATE(672), 1, + STATE(1287), 1, sym_string, + STATE(2801), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(3024), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(670), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145538,39 +141866,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147564] = 13, - ACTIONS(790), 1, + [146058] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2816), 1, - sym_identifier, ACTIONS(2818), 1, - anon_sym_LPAREN, - ACTIONS(2822), 1, - anon_sym_LBRACK, + sym_identifier, ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2832), 1, sym_float, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + ACTIONS(3002), 1, + anon_sym_LPAREN, + STATE(1285), 1, sym_dotted_name, - STATE(2710), 1, + STATE(1287), 1, + sym_string, + STATE(2579), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145578,29 +141906,29 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147617] = 8, - ACTIONS(2032), 1, + [146111] = 8, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2159), 1, + STATE(1254), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 2, + ACTIONS(1563), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 12, + ACTIONS(1561), 12, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -145613,79 +141941,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [147660] = 13, - ACTIONS(790), 1, + [146154] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2816), 1, - sym_identifier, - ACTIONS(2818), 1, - anon_sym_LPAREN, - ACTIONS(2822), 1, - anon_sym_LBRACK, ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2832), 1, sym_float, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + ACTIONS(2980), 1, + sym_identifier, + ACTIONS(3002), 1, + anon_sym_LPAREN, + STATE(1285), 1, sym_dotted_name, - STATE(2685), 1, + STATE(1287), 1, + sym_string, + STATE(1549), 1, sym_type, + STATE(1674), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1283), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [147713] = 13, - ACTIONS(55), 1, + [146209] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(2942), 1, sym_identifier, - STATE(1701), 1, - sym_string, - STATE(1743), 1, - sym_dotted_name, - STATE(2713), 1, + ACTIONS(2944), 1, + anon_sym_LPAREN, + STATE(1217), 1, sym_type, + STATE(1348), 1, + sym_dotted_name, + STATE(1351), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145693,39 +142022,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147766] = 13, - ACTIONS(473), 1, + [146262] = 13, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2988), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2990), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2992), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2994), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(3000), 1, sym_float, - STATE(1257), 1, - sym_string, - STATE(1266), 1, - sym_dotted_name, - STATE(2657), 1, + STATE(1529), 1, sym_type, + STATE(1692), 1, + sym_dotted_name, + STATE(1693), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2998), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2996), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1691), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145733,74 +142062,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147819] = 8, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(1318), 1, - aux_sym_comparison_operator_repeat1, + [146315] = 13, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(2818), 1, + sym_identifier, + ACTIONS(2822), 1, + anon_sym_LPAREN, + ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, + anon_sym_LBRACE, + ACTIONS(2832), 1, + sym_float, + STATE(1285), 1, + sym_dotted_name, + STATE(1287), 1, + sym_string, + STATE(2732), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [147862] = 13, - ACTIONS(473), 1, + ACTIONS(2830), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2828), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1283), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [146368] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(2784), 1, + sym_identifier, + ACTIONS(2786), 1, + anon_sym_LPAREN, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1257), 1, + STATE(1507), 1, sym_string, - STATE(1266), 1, + STATE(1508), 1, sym_dotted_name, - STATE(1429), 1, + STATE(2678), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145808,74 +142142,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147915] = 8, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(1318), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1559), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [147958] = 13, - ACTIONS(55), 1, + [146421] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2918), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(3044), 1, + ACTIONS(2942), 1, sym_identifier, - ACTIONS(3046), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - STATE(1612), 1, + STATE(1220), 1, sym_type, - STATE(1701), 1, - sym_string, - STATE(1743), 1, + STATE(1348), 1, sym_dotted_name, + STATE(1351), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145883,79 +142182,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148011] = 13, - ACTIONS(55), 1, + [146474] = 14, + ACTIONS(1148), 1, sym_string_start, - ACTIONS(2916), 1, + ACTIONS(2988), 1, + sym_identifier, + ACTIONS(2990), 1, anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2992), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2994), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(3000), 1, sym_float, - ACTIONS(2996), 1, - sym_identifier, - STATE(1701), 1, - sym_string, - STATE(1743), 1, - sym_dotted_name, - STATE(2707), 1, + STATE(1587), 1, sym_type, + STATE(1667), 1, + sym_union_type, + STATE(1692), 1, + sym_dotted_name, + STATE(1693), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2998), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2996), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1691), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [148064] = 13, - ACTIONS(539), 1, + [146529] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2832), 1, sym_float, - STATE(1515), 1, - sym_string, - STATE(1517), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2757), 1, + STATE(1287), 1, + sym_string, + STATE(2605), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145963,120 +142263,120 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148117] = 13, - ACTIONS(790), 1, + [146582] = 14, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2822), 1, - anon_sym_LBRACK, ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2998), 1, + ACTIONS(2980), 1, sym_identifier, - ACTIONS(3000), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - STATE(1760), 1, - sym_type, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + STATE(1285), 1, sym_dotted_name, + STATE(1287), 1, + sym_string, + STATE(1384), 1, + sym_type, + STATE(1464), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1283), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [148170] = 14, - ACTIONS(539), 1, + [146637] = 13, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(2870), 1, + ACTIONS(2966), 1, + sym_identifier, + ACTIONS(2968), 1, + anon_sym_LPAREN, + ACTIONS(2970), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2972), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2978), 1, sym_float, - ACTIONS(3062), 1, - sym_identifier, - ACTIONS(3064), 1, - anon_sym_LPAREN, - STATE(1440), 1, + STATE(320), 1, sym_type, - STATE(1515), 1, + STATE(428), 1, sym_string, - STATE(1517), 1, + STATE(429), 1, sym_dotted_name, - STATE(1555), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2976), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2974), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 6, + STATE(430), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [148225] = 13, - ACTIONS(473), 1, + [146690] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2832), 1, - sym_identifier, - ACTIONS(2838), 1, + ACTIONS(2866), 1, + anon_sym_LPAREN, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(3066), 1, - anon_sym_LPAREN, - STATE(1257), 1, + ACTIONS(2946), 1, + sym_identifier, + STATE(1723), 1, sym_string, - STATE(1266), 1, + STATE(1724), 1, sym_dotted_name, - STATE(2626), 1, + STATE(2630), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146084,39 +142384,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148278] = 13, - ACTIONS(1111), 1, + [146743] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(3030), 1, - sym_identifier, - ACTIONS(3032), 1, - anon_sym_LPAREN, - ACTIONS(3034), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(3036), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(3042), 1, + ACTIONS(2796), 1, sym_float, - STATE(1038), 1, + ACTIONS(2984), 1, + sym_identifier, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(1410), 1, sym_type, - STATE(1069), 1, - sym_dotted_name, - STATE(1080), 1, + STATE(1507), 1, sym_string, + STATE(1508), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3040), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(3038), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1078), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146124,80 +142424,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148331] = 14, - ACTIONS(993), 1, + [146796] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(3002), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(3004), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(3006), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(3008), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(3014), 1, + ACTIONS(2812), 1, sym_float, - STATE(1576), 1, - sym_type, - STATE(1758), 1, - sym_union_type, - STATE(1791), 1, - sym_string, - STATE(1800), 1, + STATE(1348), 1, sym_dotted_name, + STATE(1351), 1, + sym_string, + STATE(2820), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3012), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(3010), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1812), 6, + STATE(1347), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [148386] = 13, - ACTIONS(473), 1, + [146849] = 13, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2952), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2954), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2956), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2958), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2964), 1, sym_float, - STATE(1257), 1, + STATE(1016), 1, + sym_type, + STATE(1040), 1, sym_string, - STATE(1266), 1, + STATE(1041), 1, sym_dotted_name, - STATE(2825), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2962), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2960), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1043), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146205,75 +142504,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148439] = 9, - ACTIONS(2427), 1, - anon_sym_not, - ACTIONS(2431), 1, - anon_sym_is, - ACTIONS(3068), 1, - anon_sym_COLON, - ACTIONS(3070), 1, - anon_sym_EQ, - STATE(2223), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2429), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2425), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(3072), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [148484] = 13, - ACTIONS(473), 1, + [146902] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2832), 1, sym_float, - STATE(1257), 1, - sym_string, - STATE(1266), 1, + STATE(1285), 1, sym_dotted_name, - STATE(2649), 1, + STATE(1287), 1, + sym_string, + STATE(2697), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146281,29 +142544,29 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148537] = 13, + [146955] = 13, ACTIONS(539), 1, sym_string_start, - ACTIONS(2866), 1, - sym_identifier, - ACTIONS(2868), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2796), 1, sym_float, - STATE(1515), 1, + ACTIONS(2984), 1, + sym_identifier, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(1423), 1, + sym_type, + STATE(1507), 1, sym_string, - STATE(1517), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2805), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, @@ -146313,7 +142576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146321,79 +142584,115 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148590] = 13, - ACTIONS(790), 1, + [147008] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2822), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2824), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2998), 1, + ACTIONS(2942), 1, sym_identifier, - ACTIONS(3000), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - STATE(1762), 1, + STATE(1278), 1, sym_type, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + STATE(1288), 1, + sym_union_type, + STATE(1348), 1, sym_dotted_name, + STATE(1351), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1347), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [148643] = 13, - ACTIONS(473), 1, + [147063] = 8, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + STATE(2088), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(880), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(948), 12, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + [147106] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(2818), 1, + sym_identifier, + ACTIONS(2822), 1, + anon_sym_LPAREN, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1257), 1, - sym_string, - STATE(1266), 1, + STATE(1285), 1, sym_dotted_name, - STATE(1436), 1, + STATE(1287), 1, + sym_string, + STATE(2587), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146401,39 +142700,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148696] = 13, - ACTIONS(1111), 1, + [147159] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(3030), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(3032), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(3034), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(3036), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(3042), 1, + ACTIONS(2812), 1, sym_float, - STATE(1034), 1, - sym_type, - STATE(1069), 1, + STATE(1348), 1, sym_dotted_name, - STATE(1080), 1, + STATE(1351), 1, sym_string, + STATE(2819), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3040), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(3038), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1078), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146441,79 +142740,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148749] = 13, + [147212] = 14, ACTIONS(55), 1, sym_string_start, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(2938), 1, sym_identifier, - STATE(1701), 1, + ACTIONS(2940), 1, + anon_sym_LPAREN, + STATE(1567), 1, + sym_type, + STATE(1649), 1, + sym_union_type, + STATE(1723), 1, sym_string, - STATE(1743), 1, + STATE(1724), 1, sym_dotted_name, - STATE(2704), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1726), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [148802] = 13, - ACTIONS(539), 1, + [147267] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2870), 1, + ACTIONS(2866), 1, + anon_sym_LPAREN, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(3062), 1, + ACTIONS(2946), 1, sym_identifier, - ACTIONS(3064), 1, - anon_sym_LPAREN, - STATE(1489), 1, - sym_type, - STATE(1515), 1, + STATE(1723), 1, sym_string, - STATE(1517), 1, + STATE(1724), 1, sym_dotted_name, + STATE(2661), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146521,39 +142821,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148855] = 13, - ACTIONS(473), 1, + [147320] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2812), 1, sym_float, - STATE(1257), 1, - sym_string, - STATE(1266), 1, + STATE(1348), 1, sym_dotted_name, - STATE(2669), 1, + STATE(1351), 1, + sym_string, + STATE(2818), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146561,39 +142861,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148908] = 13, - ACTIONS(790), 1, + [147373] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2816), 1, - sym_identifier, ACTIONS(2818), 1, - anon_sym_LPAREN, - ACTIONS(2822), 1, - anon_sym_LBRACK, + sym_identifier, ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2832), 1, sym_float, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + ACTIONS(3002), 1, + anon_sym_LPAREN, + STATE(1285), 1, sym_dotted_name, - STATE(2691), 1, + STATE(1287), 1, + sym_string, + STATE(2574), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146601,39 +142901,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [148961] = 13, - ACTIONS(55), 1, + [147426] = 13, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(2916), 1, + ACTIONS(2966), 1, + sym_identifier, + ACTIONS(2968), 1, anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2970), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2972), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2978), 1, sym_float, - ACTIONS(2996), 1, - sym_identifier, - STATE(1701), 1, + STATE(314), 1, + sym_type, + STATE(428), 1, sym_string, - STATE(1743), 1, + STATE(429), 1, sym_dotted_name, - STATE(2683), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2976), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2974), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(430), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146641,39 +142941,115 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149014] = 13, - ACTIONS(790), 1, + [147479] = 9, + ACTIONS(2333), 1, + anon_sym_not, + ACTIONS(2349), 1, + anon_sym_is, + ACTIONS(3004), 1, + anon_sym_COLON, + ACTIONS(3006), 1, + anon_sym_EQ, + STATE(2169), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2347), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2325), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(3008), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [147524] = 13, + ACTIONS(467), 1, sym_string_start, + ACTIONS(2818), 1, + sym_identifier, ACTIONS(2822), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2998), 1, + STATE(1285), 1, + sym_dotted_name, + STATE(1287), 1, + sym_string, + STATE(2613), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2830), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2828), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1283), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [147577] = 13, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2798), 1, sym_identifier, - ACTIONS(3000), 1, + ACTIONS(2800), 1, anon_sym_LPAREN, - STATE(1772), 1, - sym_type, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + ACTIONS(2802), 1, + anon_sym_LBRACK, + ACTIONS(2804), 1, + anon_sym_LBRACE, + ACTIONS(2812), 1, + sym_float, + STATE(1348), 1, sym_dotted_name, + STATE(1351), 1, + sym_string, + STATE(2816), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1347), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146681,39 +143057,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149067] = 13, - ACTIONS(1111), 1, + [147630] = 13, + ACTIONS(1285), 1, sym_string_start, - ACTIONS(3030), 1, + ACTIONS(2952), 1, sym_identifier, - ACTIONS(3032), 1, + ACTIONS(2954), 1, anon_sym_LPAREN, - ACTIONS(3034), 1, + ACTIONS(2956), 1, anon_sym_LBRACK, - ACTIONS(3036), 1, + ACTIONS(2958), 1, anon_sym_LBRACE, - ACTIONS(3042), 1, + ACTIONS(2964), 1, sym_float, - STATE(1032), 1, + STATE(1024), 1, sym_type, - STATE(1069), 1, - sym_dotted_name, - STATE(1080), 1, + STATE(1040), 1, sym_string, + STATE(1041), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3040), 3, + ACTIONS(2962), 3, sym_integer, sym_true, sym_false, - ACTIONS(3038), 5, + ACTIONS(2960), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1078), 7, + STATE(1043), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146721,39 +143097,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149120] = 13, - ACTIONS(473), 1, + [147683] = 13, + ACTIONS(800), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2766), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2772), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2774), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2780), 1, sym_float, - STATE(1257), 1, + STATE(1804), 1, sym_string, - STATE(1266), 1, + STATE(1805), 1, sym_dotted_name, - STATE(2771), 1, + STATE(2654), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2778), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2776), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1806), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146761,39 +143137,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149173] = 13, + [147736] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(2916), 1, + ACTIONS(2866), 1, anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(2946), 1, sym_identifier, - STATE(1701), 1, + STATE(1723), 1, sym_string, - STATE(1743), 1, + STATE(1724), 1, sym_dotted_name, - STATE(2696), 1, + STATE(2622), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146801,79 +143177,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149226] = 13, - ACTIONS(431), 1, + [147789] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2852), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2796), 1, sym_float, - ACTIONS(2988), 1, + ACTIONS(2984), 1, sym_identifier, - ACTIONS(2990), 1, + ACTIONS(2986), 1, anon_sym_LPAREN, - STATE(1273), 1, + STATE(1443), 1, sym_type, - STATE(1342), 1, + STATE(1503), 1, + sym_union_type, + STATE(1507), 1, sym_string, - STATE(1401), 1, + STATE(1508), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1510), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [149279] = 13, - ACTIONS(920), 1, + [147844] = 13, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(3048), 1, + ACTIONS(3010), 1, sym_identifier, - ACTIONS(3050), 1, + ACTIONS(3012), 1, anon_sym_LPAREN, - ACTIONS(3052), 1, + ACTIONS(3014), 1, anon_sym_LBRACK, - ACTIONS(3054), 1, + ACTIONS(3016), 1, anon_sym_LBRACE, - ACTIONS(3060), 1, + ACTIONS(3022), 1, sym_float, - STATE(312), 1, + STATE(377), 1, sym_type, - STATE(773), 1, + STATE(403), 1, sym_dotted_name, - STATE(775), 1, + STATE(404), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3058), 3, + ACTIONS(3020), 3, sym_integer, sym_true, sym_false, - ACTIONS(3056), 5, + ACTIONS(3018), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(770), 7, + STATE(402), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146881,80 +143258,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149332] = 14, - ACTIONS(920), 1, + [147897] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3048), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(3050), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(3052), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(3054), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(3060), 1, + ACTIONS(2832), 1, sym_float, - STATE(345), 1, - sym_type, - STATE(734), 1, - sym_union_type, - STATE(773), 1, + STATE(1285), 1, sym_dotted_name, - STATE(775), 1, + STATE(1287), 1, sym_string, + STATE(2716), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3058), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(3056), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(770), 6, + STATE(1283), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [149387] = 13, - ACTIONS(473), 1, + [147950] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2832), 1, - sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2866), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2876), 1, sym_float, - STATE(1257), 1, + ACTIONS(2946), 1, + sym_identifier, + STATE(1723), 1, sym_string, - STATE(1266), 1, + STATE(1724), 1, sym_dotted_name, - STATE(2790), 1, + STATE(2664), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -146962,80 +143338,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149440] = 14, - ACTIONS(473), 1, + [148003] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(2866), 1, + anon_sym_LPAREN, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2992), 1, + ACTIONS(2946), 1, sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1257), 1, + STATE(1723), 1, sym_string, - STATE(1266), 1, + STATE(1724), 1, sym_dotted_name, - STATE(1452), 1, + STATE(2655), 1, sym_type, - STATE(1598), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 6, + STATE(1726), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [149495] = 13, - ACTIONS(431), 1, + [148056] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2848), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2850), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2852), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(2796), 1, sym_float, - STATE(1342), 1, + STATE(1507), 1, sym_string, - STATE(1401), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2792), 1, + STATE(2821), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147043,79 +143418,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149548] = 13, - ACTIONS(920), 1, + [148109] = 13, + ACTIONS(1064), 1, sym_string_start, - ACTIONS(3048), 1, + ACTIONS(2966), 1, sym_identifier, - ACTIONS(3050), 1, + ACTIONS(2968), 1, anon_sym_LPAREN, - ACTIONS(3052), 1, + ACTIONS(2970), 1, anon_sym_LBRACK, - ACTIONS(3054), 1, + ACTIONS(2972), 1, anon_sym_LBRACE, - ACTIONS(3060), 1, + ACTIONS(2978), 1, sym_float, - STATE(317), 1, + STATE(331), 1, sym_type, - STATE(773), 1, - sym_dotted_name, - STATE(775), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3058), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(3056), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(770), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [149601] = 13, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(2918), 1, - anon_sym_LBRACK, - ACTIONS(2920), 1, - anon_sym_LBRACE, - ACTIONS(2926), 1, - sym_float, - ACTIONS(2996), 1, - sym_identifier, - STATE(1701), 1, + STATE(428), 1, sym_string, - STATE(1743), 1, + STATE(429), 1, sym_dotted_name, - STATE(2681), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2976), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2974), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(430), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147123,39 +143458,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149654] = 13, - ACTIONS(55), 1, + [148162] = 13, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(2916), 1, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3012), 1, anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(3014), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(3016), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(3022), 1, sym_float, - ACTIONS(2996), 1, - sym_identifier, - STATE(1701), 1, - sym_string, - STATE(1743), 1, - sym_dotted_name, - STATE(2708), 1, + STATE(384), 1, sym_type, + STATE(403), 1, + sym_dotted_name, + STATE(404), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(3020), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(3018), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(402), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147163,115 +143498,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149707] = 14, - ACTIONS(431), 1, + [148215] = 14, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(2852), 1, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3012), 1, + anon_sym_LPAREN, + ACTIONS(3014), 1, anon_sym_LBRACK, - ACTIONS(2854), 1, + ACTIONS(3016), 1, anon_sym_LBRACE, - ACTIONS(2862), 1, + ACTIONS(3022), 1, sym_float, - ACTIONS(2988), 1, - sym_identifier, - ACTIONS(2990), 1, - anon_sym_LPAREN, - STATE(1323), 1, + STATE(356), 1, sym_type, - STATE(1342), 1, - sym_string, - STATE(1358), 1, + STATE(398), 1, sym_union_type, - STATE(1401), 1, + STATE(403), 1, sym_dotted_name, + STATE(404), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 3, + ACTIONS(3020), 3, sym_integer, sym_true, sym_false, - ACTIONS(2858), 5, + ACTIONS(3018), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1410), 6, + STATE(402), 6, sym_schema_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [149762] = 8, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(1318), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1559), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1561), 12, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [149805] = 13, - ACTIONS(473), 1, + [148270] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2832), 1, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2836), 1, + ACTIONS(2786), 1, anon_sym_LPAREN, - ACTIONS(2838), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2792), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2796), 1, sym_float, - STATE(1257), 1, + STATE(1507), 1, sym_string, - STATE(1266), 1, + STATE(1508), 1, sym_dotted_name, - STATE(2788), 1, + STATE(2728), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2794), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1510), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147279,39 +143579,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149858] = 13, - ACTIONS(539), 1, + [148323] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2870), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(3062), 1, + ACTIONS(2980), 1, sym_identifier, - ACTIONS(3064), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - STATE(1483), 1, - sym_type, - STATE(1515), 1, - sym_string, - STATE(1517), 1, + STATE(1285), 1, sym_dotted_name, + STATE(1287), 1, + sym_string, + STATE(1397), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147319,39 +143619,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149911] = 13, - ACTIONS(790), 1, + [148376] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(2822), 1, - anon_sym_LBRACK, ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2832), 1, sym_float, - ACTIONS(2998), 1, + ACTIONS(2980), 1, sym_identifier, - ACTIONS(3000), 1, + ACTIONS(2982), 1, anon_sym_LPAREN, - STATE(1823), 1, - sym_type, - STATE(1842), 1, - sym_string, - STATE(1850), 1, + STATE(1285), 1, sym_dotted_name, + STATE(1287), 1, + sym_string, + STATE(1439), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(2826), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1871), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147359,39 +143659,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [149964] = 13, - ACTIONS(920), 1, + [148429] = 13, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3048), 1, + ACTIONS(2818), 1, sym_identifier, - ACTIONS(3050), 1, + ACTIONS(2822), 1, anon_sym_LPAREN, - ACTIONS(3052), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(3054), 1, + ACTIONS(2826), 1, anon_sym_LBRACE, - ACTIONS(3060), 1, + ACTIONS(2832), 1, sym_float, - STATE(322), 1, - sym_type, - STATE(773), 1, + STATE(1285), 1, sym_dotted_name, - STATE(775), 1, + STATE(1287), 1, sym_string, + STATE(2718), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3058), 3, + ACTIONS(2830), 3, sym_integer, sym_true, sym_false, - ACTIONS(3056), 5, + ACTIONS(2828), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(770), 7, + STATE(1283), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147399,39 +143699,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [150017] = 13, - ACTIONS(473), 1, + [148482] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2832), 1, - sym_identifier, - ACTIONS(2838), 1, + ACTIONS(2866), 1, + anon_sym_LPAREN, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(3066), 1, - anon_sym_LPAREN, - STATE(1257), 1, + ACTIONS(2946), 1, + sym_identifier, + STATE(1723), 1, sym_string, - STATE(1266), 1, + STATE(1724), 1, sym_dotted_name, - STATE(2630), 1, + STATE(2652), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147439,39 +143739,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [150070] = 13, - ACTIONS(539), 1, + [148535] = 13, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(2866), 1, + ACTIONS(3010), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(3012), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(3014), 1, anon_sym_LBRACK, - ACTIONS(2874), 1, + ACTIONS(3016), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(3022), 1, sym_float, - STATE(1515), 1, - sym_string, - STATE(1517), 1, - sym_dotted_name, - STATE(2854), 1, + STATE(389), 1, sym_type, + STATE(403), 1, + sym_dotted_name, + STATE(404), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2876), 3, + ACTIONS(3020), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(3018), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1521), 7, + STATE(402), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147479,39 +143779,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [150123] = 13, - ACTIONS(473), 1, + [148588] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2992), 1, + ACTIONS(2938), 1, sym_identifier, - ACTIONS(3066), 1, + ACTIONS(2940), 1, anon_sym_LPAREN, - STATE(1257), 1, + STATE(1535), 1, + sym_type, + STATE(1723), 1, sym_string, - STATE(1266), 1, + STATE(1724), 1, sym_dotted_name, - STATE(1616), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147519,39 +143819,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [150176] = 13, - ACTIONS(55), 1, + [148641] = 13, + ACTIONS(1227), 1, sym_string_start, - ACTIONS(2916), 1, + ACTIONS(3010), 1, + sym_identifier, + ACTIONS(3012), 1, anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(3014), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(3016), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(3022), 1, sym_float, - ACTIONS(2996), 1, - sym_identifier, - STATE(1701), 1, - sym_string, - STATE(1743), 1, - sym_dotted_name, - STATE(2719), 1, + STATE(375), 1, sym_type, + STATE(403), 1, + sym_dotted_name, + STATE(404), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(3020), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(3018), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(402), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147559,39 +143859,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [150229] = 13, + [148694] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(2916), 1, - anon_sym_LPAREN, - ACTIONS(2918), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2926), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2996), 1, + ACTIONS(2938), 1, sym_identifier, - STATE(1701), 1, + ACTIONS(2940), 1, + anon_sym_LPAREN, + STATE(1461), 1, + sym_type, + STATE(1723), 1, sym_string, - STATE(1743), 1, + STATE(1724), 1, sym_dotted_name, - STATE(2718), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2924), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2922), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1749), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147599,39 +143899,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [150282] = 13, - ACTIONS(473), 1, + [148747] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(2866), 1, + anon_sym_LPAREN, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2870), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2876), 1, sym_float, - ACTIONS(2992), 1, + ACTIONS(2946), 1, sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1257), 1, + STATE(1723), 1, sym_string, - STATE(1266), 1, + STATE(1724), 1, sym_dotted_name, - STATE(1444), 1, + STATE(2627), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2874), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2872), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 7, + STATE(1726), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -147639,97 +143939,138 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [150335] = 14, - ACTIONS(473), 1, + [148800] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2838), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, + ACTIONS(2804), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, + ACTIONS(2812), 1, sym_float, - ACTIONS(2992), 1, + ACTIONS(2942), 1, sym_identifier, - ACTIONS(3066), 1, + ACTIONS(2944), 1, anon_sym_LPAREN, - STATE(1257), 1, - sym_string, - STATE(1266), 1, - sym_dotted_name, - STATE(1513), 1, + STATE(1207), 1, sym_type, - STATE(1699), 1, - sym_union_type, + STATE(1348), 1, + sym_dotted_name, + STATE(1351), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 3, + ACTIONS(2810), 3, sym_integer, sym_true, sym_false, - ACTIONS(2842), 5, + ACTIONS(2808), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1244), 6, + STATE(1347), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [150390] = 8, - ACTIONS(2205), 1, + [148853] = 8, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2209), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(1453), 1, + STATE(1254), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 2, + ACTIONS(1563), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2207), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2203), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 10, + ACTIONS(1561), 12, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - anon_sym_then, - [150431] = 8, - ACTIONS(2205), 1, + [148896] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(2868), 1, + anon_sym_LBRACK, + ACTIONS(2870), 1, + anon_sym_LBRACE, + ACTIONS(2876), 1, + sym_float, + ACTIONS(2938), 1, + sym_identifier, + ACTIONS(2940), 1, + anon_sym_LPAREN, + STATE(1527), 1, + sym_type, + STATE(1723), 1, + sym_string, + STATE(1724), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2874), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2872), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1726), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [148949] = 8, + ACTIONS(2179), 1, anon_sym_not, - ACTIONS(2209), 1, + ACTIONS(2183), 1, anon_sym_is, - STATE(1453), 1, + STATE(1403), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 2, + ACTIONS(1563), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2207), 2, + ACTIONS(2181), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2203), 5, + ACTIONS(2177), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -147746,23 +144087,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [150472] = 8, - ACTIONS(2205), 1, + [148990] = 8, + ACTIONS(2179), 1, anon_sym_not, - ACTIONS(2209), 1, + ACTIONS(2183), 1, anon_sym_is, - STATE(1453), 1, + STATE(1403), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 2, + ACTIONS(1563), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2207), 2, + ACTIONS(2181), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2203), 5, + ACTIONS(2177), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -147779,29 +144120,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [150513] = 8, - ACTIONS(2205), 1, + [149031] = 8, + ACTIONS(2179), 1, anon_sym_not, - ACTIONS(2209), 1, + ACTIONS(2183), 1, anon_sym_is, - STATE(1453), 1, + STATE(2152), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 2, + ACTIONS(880), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2207), 2, + ACTIONS(2181), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2203), 5, + ACTIONS(2177), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 10, + ACTIONS(948), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147812,29 +144153,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [150554] = 8, - ACTIONS(2205), 1, + [149072] = 8, + ACTIONS(2179), 1, anon_sym_not, - ACTIONS(2209), 1, + ACTIONS(2183), 1, anon_sym_is, - STATE(2207), 1, + STATE(1403), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1225), 2, + ACTIONS(1563), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2207), 2, + ACTIONS(2181), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2203), 5, + ACTIONS(2177), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 10, + ACTIONS(1561), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147845,51 +144186,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [150595] = 7, - ACTIONS(2247), 1, + [149113] = 8, + ACTIONS(2179), 1, anon_sym_not, - ACTIONS(2263), 1, + ACTIONS(2183), 1, anon_sym_is, - STATE(1559), 1, + STATE(1403), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2261), 2, + ACTIONS(1563), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2181), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2239), 5, + ACTIONS(2177), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 11, + ACTIONS(1561), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - [150633] = 7, - ACTIONS(2247), 1, + anon_sym_PLUS_EQ, + anon_sym_then, + [149154] = 7, + ACTIONS(2261), 1, anon_sym_not, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_is, - STATE(1559), 1, + STATE(1496), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2261), 2, + ACTIONS(2267), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2239), 5, + ACTIONS(2259), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -147907,26 +144250,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [150671] = 7, - ACTIONS(2247), 1, + [149192] = 7, + ACTIONS(2261), 1, anon_sym_not, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_is, - STATE(2215), 1, + STATE(1496), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2261), 2, + ACTIONS(2267), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2239), 5, + ACTIONS(2259), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 11, + ACTIONS(1561), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147938,20 +144281,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [150709] = 7, - ACTIONS(2247), 1, + [149230] = 7, + ACTIONS(2261), 1, anon_sym_not, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_is, - STATE(1559), 1, + STATE(1496), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2261), 2, + ACTIONS(2267), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2239), 5, + ACTIONS(2259), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -147969,20 +144312,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [150747] = 7, - ACTIONS(2247), 1, + [149268] = 7, + ACTIONS(2261), 1, anon_sym_not, - ACTIONS(2263), 1, + ACTIONS(2269), 1, anon_sym_is, - STATE(1559), 1, + STATE(1496), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2261), 2, + ACTIONS(2267), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2239), 5, + ACTIONS(2259), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -148000,86 +144343,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [150785] = 7, - ACTIONS(2398), 1, + [149306] = 7, + ACTIONS(2261), 1, anon_sym_not, - ACTIONS(2402), 1, + ACTIONS(2269), 1, anon_sym_is, - STATE(1757), 1, + STATE(2157), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, + ACTIONS(2267), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2396), 5, + ACTIONS(2259), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 10, + ACTIONS(948), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [150822] = 7, - ACTIONS(2398), 1, + [149344] = 7, + ACTIONS(2333), 1, anon_sym_not, - ACTIONS(2402), 1, + ACTIONS(2349), 1, anon_sym_is, - STATE(1757), 1, + STATE(2165), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, + ACTIONS(2347), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2396), 5, + ACTIONS(2325), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 10, + ACTIONS(948), 10, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [150859] = 7, - ACTIONS(2398), 1, + [149381] = 7, + ACTIONS(2436), 1, anon_sym_not, - ACTIONS(2402), 1, + ACTIONS(2440), 1, anon_sym_is, - STATE(2227), 1, + STATE(1600), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, + ACTIONS(2438), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2396), 5, + ACTIONS(2434), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 10, + ACTIONS(1561), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148090,50 +144434,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [150896] = 7, - ACTIONS(1223), 1, - anon_sym_LF, - ACTIONS(2411), 1, + [149418] = 7, + ACTIONS(2436), 1, anon_sym_not, - ACTIONS(2423), 1, + ACTIONS(2440), 1, anon_sym_is, - STATE(2226), 1, + STATE(1600), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 7, - anon_sym_in, + ACTIONS(2438), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(2434), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(1225), 9, + ACTIONS(1561), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [150933] = 7, - ACTIONS(2427), 1, + [149455] = 7, + ACTIONS(2333), 1, anon_sym_not, - ACTIONS(2431), 1, + ACTIONS(2349), 1, anon_sym_is, - STATE(1645), 1, + STATE(1651), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2429), 2, + ACTIONS(2347), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 5, + ACTIONS(2325), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -148150,80 +144494,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [150970] = 7, - ACTIONS(2427), 1, + [149492] = 7, + ACTIONS(948), 1, + anon_sym_LF, + ACTIONS(2305), 1, anon_sym_not, - ACTIONS(2431), 1, + ACTIONS(2317), 1, anon_sym_is, - STATE(1645), 1, + STATE(2173), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2429), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2425), 5, + ACTIONS(2297), 7, anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 10, - sym__newline, + anon_sym_GT, + ACTIONS(880), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151007] = 7, - ACTIONS(1561), 1, - anon_sym_LF, - ACTIONS(2411), 1, + [149529] = 7, + ACTIONS(2436), 1, anon_sym_not, - ACTIONS(2423), 1, + ACTIONS(2440), 1, anon_sym_is, - STATE(1754), 1, + STATE(1600), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 7, - anon_sym_in, + ACTIONS(2438), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(2434), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(1559), 9, + ACTIONS(1561), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151044] = 7, - ACTIONS(2427), 1, + [149566] = 7, + ACTIONS(2333), 1, anon_sym_not, - ACTIONS(2431), 1, + ACTIONS(2349), 1, anon_sym_is, - STATE(1645), 1, + STATE(1651), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2429), 2, + ACTIONS(2347), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 5, + ACTIONS(2325), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -148240,20 +144584,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151081] = 7, - ACTIONS(2427), 1, + [149603] = 7, + ACTIONS(2333), 1, anon_sym_not, - ACTIONS(2431), 1, + ACTIONS(2349), 1, anon_sym_is, - STATE(1645), 1, + STATE(1651), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2429), 2, + ACTIONS(2347), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 5, + ACTIONS(2325), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -148270,19 +144614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151118] = 7, + [149640] = 7, ACTIONS(1561), 1, anon_sym_LF, - ACTIONS(2411), 1, + ACTIONS(2305), 1, anon_sym_not, - ACTIONS(2423), 1, + ACTIONS(2317), 1, anon_sym_is, - STATE(1754), 1, + STATE(1666), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 7, + ACTIONS(2297), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -148290,7 +144634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1559), 9, + ACTIONS(1563), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148300,19 +144644,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151155] = 7, + [149677] = 7, ACTIONS(1561), 1, anon_sym_LF, - ACTIONS(2411), 1, + ACTIONS(2305), 1, anon_sym_not, - ACTIONS(2423), 1, + ACTIONS(2317), 1, anon_sym_is, - STATE(1754), 1, + STATE(1666), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 7, + ACTIONS(2297), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -148320,7 +144664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1559), 9, + ACTIONS(1563), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148330,20 +144674,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151192] = 7, - ACTIONS(2398), 1, + [149714] = 7, + ACTIONS(2436), 1, anon_sym_not, - ACTIONS(2402), 1, + ACTIONS(2440), 1, anon_sym_is, - STATE(1757), 1, + STATE(1600), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, + ACTIONS(2438), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2396), 5, + ACTIONS(2434), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -148360,19 +144704,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151229] = 7, + [149751] = 7, ACTIONS(1561), 1, anon_sym_LF, - ACTIONS(2411), 1, + ACTIONS(2305), 1, anon_sym_not, - ACTIONS(2423), 1, + ACTIONS(2317), 1, anon_sym_is, - STATE(1754), 1, + STATE(1666), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 7, + ACTIONS(2297), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -148380,7 +144724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1559), 9, + ACTIONS(1563), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148390,109 +144734,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151266] = 7, - ACTIONS(2398), 1, + [149788] = 7, + ACTIONS(2333), 1, anon_sym_not, - ACTIONS(2402), 1, + ACTIONS(2349), 1, anon_sym_is, - STATE(1757), 1, + STATE(1651), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, + ACTIONS(2347), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2396), 5, + ACTIONS(2325), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, ACTIONS(1561), 10, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151303] = 7, - ACTIONS(2427), 1, + [149825] = 7, + ACTIONS(1561), 1, + anon_sym_LF, + ACTIONS(2305), 1, anon_sym_not, - ACTIONS(2431), 1, + ACTIONS(2317), 1, anon_sym_is, - STATE(2224), 1, + STATE(1666), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2429), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2425), 5, + ACTIONS(2297), 7, anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 10, - sym__newline, + anon_sym_GT, + ACTIONS(1563), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151340] = 7, - ACTIONS(2506), 1, + [149862] = 7, + ACTIONS(2436), 1, anon_sym_not, - ACTIONS(2522), 1, + ACTIONS(2440), 1, anon_sym_is, - STATE(1893), 1, + STATE(2167), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, + ACTIONS(2438), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 5, + ACTIONS(2434), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 9, + ACTIONS(948), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151376] = 7, - ACTIONS(2506), 1, + [149899] = 7, + ACTIONS(2608), 1, anon_sym_not, - ACTIONS(2522), 1, + ACTIONS(2612), 1, anon_sym_is, - STATE(1893), 1, + STATE(1883), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 5, + ACTIONS(2606), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -148508,26 +144853,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151412] = 7, - ACTIONS(2506), 1, + [149935] = 7, + ACTIONS(2608), 1, anon_sym_not, - ACTIONS(2522), 1, + ACTIONS(2612), 1, anon_sym_is, - STATE(2231), 1, + STATE(1883), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 5, + ACTIONS(2606), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 9, + ACTIONS(1561), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148537,26 +144882,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151448] = 7, - ACTIONS(2506), 1, + [149971] = 7, + ACTIONS(2608), 1, anon_sym_not, - ACTIONS(2522), 1, + ACTIONS(2612), 1, anon_sym_is, - STATE(1893), 1, + STATE(2177), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 5, + ACTIONS(2606), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 9, + ACTIONS(948), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148566,20 +144911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151484] = 7, - ACTIONS(2506), 1, + [150007] = 7, + ACTIONS(2608), 1, anon_sym_not, - ACTIONS(2522), 1, + ACTIONS(2612), 1, anon_sym_is, - STATE(1893), 1, + STATE(1883), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 5, + ACTIONS(2606), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -148595,47 +144940,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151520] = 7, - ACTIONS(2076), 1, + [150043] = 7, + ACTIONS(2608), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2612), 1, anon_sym_is, - STATE(2047), 1, + STATE(1883), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(2610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1354), 5, + ACTIONS(2606), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 7, + ACTIONS(1561), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151554] = 7, - ACTIONS(2076), 1, + [150079] = 7, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2056), 1, anon_sym_is, - STATE(2047), 1, + STATE(1993), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1354), 5, + ACTIONS(910), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -148649,26 +144996,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151588] = 7, - ACTIONS(2076), 1, + [150113] = 7, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2056), 1, anon_sym_is, - STATE(2047), 1, + STATE(2182), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1354), 5, + ACTIONS(910), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1561), 7, + ACTIONS(948), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148676,20 +145023,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151622] = 7, - ACTIONS(2076), 1, + [150147] = 7, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2056), 1, anon_sym_is, - STATE(2047), 1, + STATE(1993), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1354), 5, + ACTIONS(910), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -148703,26 +145050,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151656] = 7, - ACTIONS(2076), 1, + [150181] = 7, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2078), 1, + ACTIONS(2056), 1, anon_sym_is, - STATE(2239), 1, + STATE(1993), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1350), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1354), 5, + ACTIONS(910), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1223), 7, + ACTIONS(1561), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148730,280 +145077,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [151690] = 4, - ACTIONS(3074), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 13, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [151717] = 14, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(3078), 1, - anon_sym_RBRACE, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, - sym_integer, - ACTIONS(3084), 1, - sym_float, - STATE(2716), 1, - sym_config_entry, - STATE(2754), 1, - sym_test, - STATE(3139), 1, - sym_config_entries, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2758), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2779), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [151764] = 13, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(417), 1, - anon_sym_STAR_STAR, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(3086), 1, - anon_sym_RBRACE, - ACTIONS(3088), 1, - anon_sym_LF, - STATE(2754), 1, - sym_test, - STATE(2774), 1, - sym_config_entry, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3082), 2, - sym_integer, - sym_float, - STATE(2758), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2779), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [151809] = 5, - STATE(1600), 1, - aux_sym_dotted_name_repeat1, + [150215] = 7, + ACTIONS(2054), 1, + anon_sym_not, + ACTIONS(2056), 1, + anon_sym_is, + STATE(1993), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3090), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1479), 3, - anon_sym_EQ, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1477), 10, - sym__newline, - anon_sym_as, + ACTIONS(910), 5, anon_sym_in, - anon_sym_not, - anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [151838] = 4, - ACTIONS(3074), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 13, + ACTIONS(1561), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - [151865] = 14, + anon_sym_PLUS, + [150249] = 13, ACTIONS(403), 1, anon_sym_if, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(3080), 1, + ACTIONS(417), 1, anon_sym_STAR_STAR, - ACTIONS(3082), 1, - sym_integer, - ACTIONS(3084), 1, - sym_float, - ACTIONS(3092), 1, - anon_sym_RBRACE, - STATE(2716), 1, - sym_config_entry, - STATE(2754), 1, - sym_test, - STATE(2962), 1, - sym_config_entries, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2758), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2779), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [151912] = 14, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(3076), 1, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, - sym_integer, - ACTIONS(3084), 1, - sym_float, - ACTIONS(3094), 1, + ACTIONS(3026), 1, anon_sym_RBRACE, - STATE(2716), 1, + ACTIONS(3028), 1, + anon_sym_LF, + STATE(2767), 1, sym_config_entry, - STATE(2754), 1, + STATE(2789), 1, sym_test, - STATE(3162), 1, - sym_config_entries, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2779), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [151959] = 14, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3030), 2, sym_integer, - ACTIONS(3084), 1, sym_float, - ACTIONS(3096), 1, - anon_sym_RBRACE, - STATE(2716), 1, - sym_config_entry, - STATE(2754), 1, - sym_test, - STATE(3029), 1, - sym_config_entries, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2758), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2779), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [152006] = 4, - ACTIONS(3074), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1465), 13, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [152033] = 7, - ACTIONS(3074), 1, + STATE(2793), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2735), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [150294] = 4, + ACTIONS(3032), 1, anon_sym_PLUS, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1503), 9, + ACTIONS(1070), 13, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -149012,93 +145155,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_RBRACE, anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, anon_sym_PLUS_EQ, - [152066] = 14, + [150321] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(3076), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3030), 1, sym_integer, - ACTIONS(3084), 1, - sym_float, - ACTIONS(3102), 1, + ACTIONS(3034), 1, anon_sym_RBRACE, - STATE(2716), 1, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, + sym_float, + STATE(2631), 1, sym_config_entry, - STATE(2754), 1, + STATE(2789), 1, sym_test, - STATE(3233), 1, + STATE(3196), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2779), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [152113] = 13, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(417), 1, - anon_sym_STAR_STAR, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(3104), 1, - anon_sym_RBRACE, - ACTIONS(3106), 1, - anon_sym_LF, - STATE(2754), 1, - sym_test, - STATE(2774), 1, - sym_config_entry, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3082), 2, - sym_integer, - sym_float, - STATE(2758), 2, + STATE(2793), 2, sym_dictionary_splat, sym_if_entry, - STATE(2779), 3, + STATE(2735), 3, sym_dotted_name, sym_paren_expression, sym_string, - [152158] = 9, - ACTIONS(3074), 1, + [150368] = 7, + ACTIONS(3032), 1, anon_sym_PLUS, - ACTIONS(3098), 1, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1388), 7, + ACTIONS(1197), 9, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, @@ -149106,16 +145218,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_for, anon_sym_PLUS_EQ, - [152195] = 4, - ACTIONS(3074), 1, + [150401] = 4, + ACTIONS(3032), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1439), 13, + ACTIONS(916), 13, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -149129,375 +145241,462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [152222] = 14, + [150428] = 5, + STATE(1466), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3044), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1020), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1022), 10, + sym__newline, + anon_sym_as, + anon_sym_in, + anon_sym_not, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [150457] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(3076), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3030), 1, sym_integer, - ACTIONS(3084), 1, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, sym_float, - ACTIONS(3112), 1, + ACTIONS(3046), 1, anon_sym_RBRACE, - STATE(2716), 1, + STATE(2631), 1, sym_config_entry, - STATE(2754), 1, + STATE(2789), 1, sym_test, - STATE(3052), 1, + STATE(2990), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, + STATE(2793), 2, sym_dictionary_splat, sym_if_entry, - STATE(2779), 3, + STATE(2735), 3, sym_dotted_name, sym_paren_expression, sym_string, - [152269] = 14, + [150504] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(3076), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3030), 1, sym_integer, - ACTIONS(3084), 1, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, sym_float, - ACTIONS(3114), 1, + ACTIONS(3048), 1, anon_sym_RBRACE, - STATE(2716), 1, + STATE(2631), 1, sym_config_entry, - STATE(2754), 1, + STATE(2789), 1, sym_test, - STATE(3127), 1, + STATE(2968), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, + STATE(2793), 2, sym_dictionary_splat, sym_if_entry, - STATE(2779), 3, + STATE(2735), 3, sym_dotted_name, sym_paren_expression, sym_string, - [152316] = 14, + [150551] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(3076), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3030), 1, sym_integer, - ACTIONS(3084), 1, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, sym_float, - ACTIONS(3116), 1, + ACTIONS(3050), 1, anon_sym_RBRACE, - STATE(2716), 1, + STATE(2631), 1, sym_config_entry, - STATE(2754), 1, + STATE(2789), 1, sym_test, - STATE(3238), 1, + STATE(2899), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, + STATE(2793), 2, sym_dictionary_splat, sym_if_entry, - STATE(2779), 3, + STATE(2735), 3, sym_dotted_name, sym_paren_expression, sym_string, - [152363] = 14, + [150598] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(3076), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3030), 1, sym_integer, - ACTIONS(3084), 1, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, sym_float, - ACTIONS(3118), 1, + ACTIONS(3052), 1, anon_sym_RBRACE, - STATE(2716), 1, + STATE(2631), 1, sym_config_entry, - STATE(2754), 1, + STATE(2789), 1, sym_test, - STATE(2992), 1, + STATE(3100), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, + STATE(2793), 2, sym_dictionary_splat, sym_if_entry, - STATE(2779), 3, + STATE(2735), 3, sym_dotted_name, sym_paren_expression, sym_string, - [152410] = 13, + [150645] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(3076), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3030), 1, sym_integer, - ACTIONS(3084), 1, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, sym_float, - ACTIONS(3120), 1, + ACTIONS(3054), 1, anon_sym_RBRACE, - STATE(2754), 1, - sym_test, - STATE(2774), 1, + STATE(2631), 1, sym_config_entry, + STATE(2789), 1, + sym_test, + STATE(3004), 1, + sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, + STATE(2793), 2, sym_dictionary_splat, sym_if_entry, - STATE(2779), 3, + STATE(2735), 3, sym_dotted_name, sym_paren_expression, sym_string, - [152454] = 13, + [150692] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(3076), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3030), 1, sym_integer, - ACTIONS(3084), 1, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, sym_float, - ACTIONS(3122), 1, + ACTIONS(3056), 1, anon_sym_RBRACE, - STATE(2754), 1, - sym_test, - STATE(2823), 1, + STATE(2631), 1, sym_config_entry, + STATE(2789), 1, + sym_test, + STATE(3170), 1, + sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, + STATE(2793), 2, sym_dictionary_splat, sym_if_entry, - STATE(2779), 3, + STATE(2735), 3, sym_dotted_name, sym_paren_expression, sym_string, - [152498] = 14, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3128), 1, - anon_sym_COMMA, - ACTIONS(3130), 1, - anon_sym_RBRACK, - ACTIONS(3132), 1, - anon_sym_for, - ACTIONS(3134), 1, + [150739] = 9, + ACTIONS(3032), 1, + anon_sym_PLUS, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3138), 1, - anon_sym_PLUS, - STATE(2619), 1, - sym_for_in_clause, - STATE(2842), 1, - aux_sym__collection_elements_repeat1, - STATE(2991), 1, - sym__comprehension_clauses, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152544] = 14, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3128), 1, + ACTIONS(1241), 7, anon_sym_COMMA, - ACTIONS(3130), 1, - anon_sym_RBRACK, - ACTIONS(3132), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_for, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, + anon_sym_PLUS_EQ, + [150776] = 4, + ACTIONS(3032), 1, anon_sym_PLUS, - STATE(2619), 1, - sym_for_in_clause, - STATE(2842), 1, - aux_sym__collection_elements_repeat1, - STATE(3135), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152590] = 12, + ACTIONS(1074), 13, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + [150803] = 13, ACTIONS(403), 1, anon_sym_if, ACTIONS(417), 1, anon_sym_STAR_STAR, - ACTIONS(455), 1, + ACTIONS(445), 1, anon_sym_LPAREN, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3076), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3140), 1, + ACTIONS(3062), 1, + anon_sym_RBRACE, + ACTIONS(3064), 1, anon_sym_LF, - STATE(2754), 1, - sym_test, - STATE(2774), 1, + STATE(2767), 1, sym_config_entry, + STATE(2789), 1, + sym_test, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3082), 2, + ACTIONS(3030), 2, sym_integer, sym_float, - STATE(2758), 2, + STATE(2793), 2, sym_dictionary_splat, sym_if_entry, - STATE(2779), 3, + STATE(2735), 3, sym_dotted_name, sym_paren_expression, sym_string, - [152632] = 10, - ACTIONS(41), 1, - anon_sym_AT, - ACTIONS(3142), 1, - anon_sym_LBRACK, - ACTIONS(3144), 1, - anon_sym_schema, - ACTIONS(3146), 1, - anon_sym_mixin, - ACTIONS(3148), 1, - anon_sym_protocol, - ACTIONS(3150), 1, - anon_sym_rule, - ACTIONS(3152), 1, - anon_sym_check, + [150848] = 14, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(3024), 1, + sym_identifier, + ACTIONS(3030), 1, + sym_integer, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, + sym_float, + ACTIONS(3066), 1, + anon_sym_RBRACE, + STATE(2631), 1, + sym_config_entry, + STATE(2789), 1, + sym_test, + STATE(3046), 1, + sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2548), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(1817), 6, - sym_schema_index_signature, - sym_schema_statement, - sym_mixin_statement, - sym_protocol_statement, - sym_rule_statement, - sym_check_statement, - [152670] = 13, + STATE(2793), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2735), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [150895] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(3076), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3080), 1, + ACTIONS(3030), 1, + sym_integer, + ACTIONS(3036), 1, anon_sym_STAR_STAR, + ACTIONS(3038), 1, + sym_float, + ACTIONS(3068), 1, + anon_sym_RBRACE, + STATE(2631), 1, + sym_config_entry, + STATE(2789), 1, + sym_test, + STATE(2923), 1, + sym_config_entries, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2793), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2735), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [150942] = 14, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3072), 1, + anon_sym_if, + ACTIONS(3074), 1, + anon_sym_COMMA, + ACTIONS(3076), 1, + anon_sym_RBRACK, + ACTIONS(3078), 1, + anon_sym_for, + ACTIONS(3080), 1, + anon_sym_and, ACTIONS(3082), 1, - sym_integer, + anon_sym_or, ACTIONS(3084), 1, + anon_sym_PLUS, + STATE(2565), 1, + sym_for_in_clause, + STATE(2782), 1, + aux_sym__collection_elements_repeat1, + STATE(3007), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150988] = 13, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(3024), 1, + sym_identifier, + ACTIONS(3030), 1, + sym_integer, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, sym_float, - ACTIONS(3154), 1, + ACTIONS(3086), 1, anon_sym_RBRACE, - STATE(2754), 1, - sym_test, - STATE(2774), 1, + STATE(2673), 1, sym_config_entry, + STATE(2789), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, + STATE(2793), 2, sym_dictionary_splat, sym_if_entry, - STATE(2779), 3, + STATE(2735), 3, sym_dotted_name, sym_paren_expression, sym_string, - [152714] = 14, - ACTIONS(3124), 1, + [151032] = 14, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3128), 1, + ACTIONS(3074), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3076), 1, anon_sym_RBRACK, - ACTIONS(3132), 1, + ACTIONS(3078), 1, anon_sym_for, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - STATE(2619), 1, + STATE(2565), 1, sym_for_in_clause, - STATE(2842), 1, + STATE(2782), 1, aux_sym__collection_elements_repeat1, - STATE(3216), 1, + STATE(2918), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -149505,59 +145704,59 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152760] = 10, + [151078] = 10, ACTIONS(41), 1, anon_sym_AT, - ACTIONS(3156), 1, + ACTIONS(3088), 1, anon_sym_LBRACK, - ACTIONS(3158), 1, + ACTIONS(3090), 1, anon_sym_schema, - ACTIONS(3160), 1, + ACTIONS(3092), 1, anon_sym_mixin, - ACTIONS(3162), 1, + ACTIONS(3094), 1, anon_sym_protocol, - ACTIONS(3164), 1, + ACTIONS(3096), 1, anon_sym_rule, - ACTIONS(3166), 1, + ACTIONS(3098), 1, anon_sym_check, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2548), 2, + STATE(2487), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - STATE(1752), 6, + STATE(1598), 6, sym_schema_index_signature, sym_schema_statement, sym_mixin_statement, sym_protocol_statement, sym_rule_statement, sym_check_statement, - [152798] = 14, - ACTIONS(3124), 1, + [151116] = 14, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3128), 1, + ACTIONS(3074), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3076), 1, anon_sym_RBRACK, - ACTIONS(3132), 1, + ACTIONS(3078), 1, anon_sym_for, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - STATE(2619), 1, + STATE(2565), 1, sym_for_in_clause, - STATE(2842), 1, + STATE(2782), 1, aux_sym__collection_elements_repeat1, - STATE(3231), 1, + STATE(3098), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -149565,31 +145764,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152844] = 14, - ACTIONS(3124), 1, + [151162] = 14, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3128), 1, + ACTIONS(3074), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3076), 1, anon_sym_RBRACK, - ACTIONS(3132), 1, + ACTIONS(3078), 1, anon_sym_for, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - STATE(2619), 1, + STATE(2565), 1, sym_for_in_clause, - STATE(2842), 1, + STATE(2782), 1, aux_sym__collection_elements_repeat1, - STATE(3237), 1, + STATE(2989), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -149597,31 +145796,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152890] = 14, - ACTIONS(3124), 1, + [151208] = 14, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3128), 1, + ACTIONS(3074), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3076), 1, anon_sym_RBRACK, - ACTIONS(3132), 1, + ACTIONS(3078), 1, anon_sym_for, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - STATE(2619), 1, + STATE(2565), 1, sym_for_in_clause, - STATE(2842), 1, + STATE(2782), 1, aux_sym__collection_elements_repeat1, - STATE(3166), 1, + STATE(3194), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -149629,62 +145828,91 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152936] = 13, - ACTIONS(403), 1, + [151254] = 10, + ACTIONS(41), 1, + anon_sym_AT, + ACTIONS(3100), 1, + anon_sym_LBRACK, + ACTIONS(3102), 1, + anon_sym_schema, + ACTIONS(3104), 1, + anon_sym_mixin, + ACTIONS(3106), 1, + anon_sym_protocol, + ACTIONS(3108), 1, + anon_sym_rule, + ACTIONS(3110), 1, + anon_sym_check, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2487), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(1602), 6, + sym_schema_index_signature, + sym_schema_statement, + sym_mixin_statement, + sym_protocol_statement, + sym_rule_statement, + sym_check_statement, + [151292] = 14, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, + ACTIONS(3074), 1, + anon_sym_COMMA, ACTIONS(3076), 1, - sym_identifier, + anon_sym_RBRACK, + ACTIONS(3078), 1, + anon_sym_for, ACTIONS(3080), 1, - anon_sym_STAR_STAR, + anon_sym_and, ACTIONS(3082), 1, - sym_integer, + anon_sym_or, ACTIONS(3084), 1, - sym_float, - ACTIONS(3154), 1, - anon_sym_RBRACE, - STATE(2754), 1, - sym_test, - STATE(2823), 1, - sym_config_entry, + anon_sym_PLUS, + STATE(2565), 1, + sym_for_in_clause, + STATE(2782), 1, + aux_sym__collection_elements_repeat1, + STATE(2938), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2779), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [152980] = 14, - ACTIONS(3124), 1, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [151338] = 14, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3128), 1, + ACTIONS(3074), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3076), 1, anon_sym_RBRACK, - ACTIONS(3132), 1, + ACTIONS(3078), 1, anon_sym_for, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - STATE(2619), 1, + STATE(2565), 1, sym_for_in_clause, - STATE(2842), 1, + STATE(2782), 1, aux_sym__collection_elements_repeat1, - STATE(3239), 1, + STATE(3045), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -149692,31 +145920,92 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153026] = 14, - ACTIONS(3124), 1, + [151384] = 13, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(3024), 1, + sym_identifier, + ACTIONS(3030), 1, + sym_integer, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, + sym_float, + ACTIONS(3086), 1, + anon_sym_RBRACE, + STATE(2767), 1, + sym_config_entry, + STATE(2789), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2793), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2735), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [151428] = 12, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(417), 1, + anon_sym_STAR_STAR, + ACTIONS(445), 1, + anon_sym_LPAREN, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(3024), 1, + sym_identifier, + ACTIONS(3112), 1, + anon_sym_LF, + STATE(2767), 1, + sym_config_entry, + STATE(2789), 1, + sym_test, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3030), 2, + sym_integer, + sym_float, + STATE(2793), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2735), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [151470] = 14, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3128), 1, + ACTIONS(3074), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3076), 1, anon_sym_RBRACK, - ACTIONS(3132), 1, + ACTIONS(3078), 1, anon_sym_for, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - STATE(2619), 1, + STATE(2565), 1, sym_for_in_clause, - STATE(2842), 1, + STATE(2782), 1, aux_sym__collection_elements_repeat1, - STATE(3053), 1, + STATE(2948), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -149724,31 +146013,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153072] = 14, - ACTIONS(3124), 1, + [151516] = 14, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3128), 1, + ACTIONS(3074), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3076), 1, anon_sym_RBRACK, - ACTIONS(3132), 1, + ACTIONS(3078), 1, anon_sym_for, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - STATE(2619), 1, + STATE(2565), 1, sym_for_in_clause, - STATE(2842), 1, + STATE(2782), 1, aux_sym__collection_elements_repeat1, - STATE(3027), 1, + STATE(3171), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -149756,19 +146045,81 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153118] = 4, - ACTIONS(3168), 1, + [151562] = 13, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(3024), 1, + sym_identifier, + ACTIONS(3030), 1, + sym_integer, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, + sym_float, + ACTIONS(3114), 1, + anon_sym_RBRACE, + STATE(2673), 1, + sym_config_entry, + STATE(2789), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2793), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2735), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [151606] = 13, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(3024), 1, + sym_identifier, + ACTIONS(3030), 1, + sym_integer, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, + sym_float, + ACTIONS(3116), 1, + anon_sym_RBRACE, + STATE(2767), 1, + sym_config_entry, + STATE(2789), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2793), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2735), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [151650] = 4, + ACTIONS(3118), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1430), 11, + ACTIONS(1074), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -149780,16 +146131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [153143] = 4, - ACTIONS(3168), 1, + [151675] = 4, + ACTIONS(3118), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1445), 11, + ACTIONS(916), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -149801,12 +146152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [153168] = 7, - ACTIONS(3168), 1, + [151700] = 7, + ACTIONS(3118), 1, anon_sym_PLUS, - ACTIONS(3170), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, @@ -149814,10 +146165,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1503), 7, + ACTIONS(1197), 7, anon_sym_as, anon_sym_if, anon_sym_COLON, @@ -149825,71 +146176,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_then, - [153199] = 9, - ACTIONS(3168), 1, - anon_sym_PLUS, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, + [151731] = 12, + ACTIONS(403), 1, anon_sym_if, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_LPAREN, + ACTIONS(3024), 1, + sym_identifier, + ACTIONS(3030), 1, + sym_integer, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, + sym_float, + STATE(2673), 1, + sym_config_entry, + STATE(2789), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1388), 5, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_then, - [153234] = 12, + STATE(2793), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2735), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [151772] = 12, ACTIONS(403), 1, anon_sym_if, - ACTIONS(473), 1, + ACTIONS(467), 1, sym_string_start, ACTIONS(547), 1, anon_sym_LPAREN, - ACTIONS(3076), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, + ACTIONS(3030), 1, sym_integer, - ACTIONS(3084), 1, + ACTIONS(3036), 1, + anon_sym_STAR_STAR, + ACTIONS(3038), 1, sym_float, - STATE(2754), 1, - sym_test, - STATE(2774), 1, + STATE(2767), 1, sym_config_entry, + STATE(2789), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2758), 2, + STATE(2793), 2, sym_dictionary_splat, sym_if_entry, - STATE(2779), 3, + STATE(2735), 3, sym_dotted_name, sym_paren_expression, sym_string, - [153275] = 4, - ACTIONS(3168), 1, + [151813] = 4, + ACTIONS(3118), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1439), 11, + ACTIONS(1070), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -149901,203 +146255,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [153300] = 4, - ACTIONS(3168), 1, + [151838] = 9, + ACTIONS(3118), 1, anon_sym_PLUS, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, + anon_sym_as, + ACTIONS(3126), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1465), 11, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1241), 5, anon_sym_COLON, anon_sym_else, anon_sym_EQ, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [153325] = 12, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(3080), 1, - anon_sym_STAR_STAR, - ACTIONS(3082), 1, - sym_integer, + [151873] = 4, ACTIONS(3084), 1, - sym_float, - STATE(2754), 1, - sym_test, - STATE(2823), 1, - sym_config_entry, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2758), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2779), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [153366] = 8, - ACTIONS(2205), 1, - anon_sym_not, - ACTIONS(2209), 1, - anon_sym_is, - ACTIONS(3180), 1, - anon_sym_EQ, - STATE(2208), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2207), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3178), 2, - anon_sym_COLON, - anon_sym_PLUS_EQ, - ACTIONS(2203), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [153398] = 12, - ACTIONS(3124), 1, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1074), 10, + anon_sym_DOT, anon_sym_as, - ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_PLUS, - ACTIONS(3182), 1, anon_sym_COMMA, - ACTIONS(3184), 1, anon_sym_COLON, - ACTIONS(3186), 1, anon_sym_RBRACK, - STATE(2876), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, + anon_sym_for, anon_sym_QMARK_DOT, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153438] = 10, - ACTIONS(3074), 1, - anon_sym_PLUS, - ACTIONS(3098), 1, anon_sym_and, - ACTIONS(3100), 1, anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, - ACTIONS(3190), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3188), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [153474] = 10, - ACTIONS(3074), 1, + [151897] = 10, + ACTIONS(3032), 1, anon_sym_PLUS, - ACTIONS(3098), 1, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3192), 1, + ACTIONS(3130), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3188), 3, + ACTIONS(3128), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [153510] = 9, - ACTIONS(3124), 1, + [151933] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, + ACTIONS(3132), 1, + anon_sym_COMMA, + ACTIONS(3134), 1, + anon_sym_COLON, + ACTIONS(3136), 1, + anon_sym_RBRACK, + STATE(2786), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1388), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - [153544] = 12, - ACTIONS(3124), 1, + [151973] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3184), 1, + ACTIONS(3134), 1, anon_sym_COLON, - ACTIONS(3194), 1, + ACTIONS(3138), 1, anon_sym_COMMA, - ACTIONS(3196), 1, + ACTIONS(3140), 1, anon_sym_RBRACK, - STATE(2734), 1, + STATE(2710), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -150105,73 +146380,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153584] = 10, - ACTIONS(3074), 1, - anon_sym_PLUS, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, - ACTIONS(3198), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3188), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [153620] = 4, - ACTIONS(3138), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1439), 10, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [153644] = 12, - ACTIONS(3124), 1, + [152013] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3184), 1, + ACTIONS(3134), 1, anon_sym_COLON, - ACTIONS(3200), 1, + ACTIONS(3142), 1, anon_sym_COMMA, - ACTIONS(3202), 1, + ACTIONS(3144), 1, anon_sym_RBRACK, - STATE(2746), 1, + STATE(2795), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -150179,47 +146408,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153684] = 4, - ACTIONS(3138), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1430), 10, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [153708] = 12, - ACTIONS(3124), 1, + [152053] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3184), 1, + ACTIONS(3134), 1, anon_sym_COLON, - ACTIONS(3204), 1, + ACTIONS(3146), 1, anon_sym_COMMA, - ACTIONS(3206), 1, + ACTIONS(3148), 1, anon_sym_RBRACK, - STATE(2849), 1, + STATE(2696), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -150227,73 +146436,55 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153748] = 4, - ACTIONS(3138), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1465), 10, - anon_sym_DOT, + [152093] = 12, + ACTIONS(3070), 1, anon_sym_as, + ACTIONS(3072), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - anon_sym_QMARK_DOT, + ACTIONS(3080), 1, anon_sym_and, + ACTIONS(3082), 1, anon_sym_or, - [153772] = 10, - ACTIONS(3074), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, - ACTIONS(3208), 1, - anon_sym_RBRACE, + ACTIONS(3134), 1, + anon_sym_COLON, + ACTIONS(3150), 1, + anon_sym_COMMA, + ACTIONS(3152), 1, + anon_sym_RBRACK, + STATE(2688), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3188), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [153808] = 12, - ACTIONS(3124), 1, + [152133] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3184), 1, + ACTIONS(3134), 1, anon_sym_COLON, - ACTIONS(3210), 1, + ACTIONS(3154), 1, anon_sym_COMMA, - ACTIONS(3212), 1, + ACTIONS(3156), 1, anon_sym_RBRACK, - STATE(2863), 1, + STATE(2775), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -150301,180 +146492,153 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153848] = 7, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_PLUS, + [152173] = 8, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + ACTIONS(3160), 1, + anon_sym_EQ, + STATE(2095), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1503), 6, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3158), 2, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - [153878] = 12, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3134), 1, + anon_sym_PLUS_EQ, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [152205] = 10, + ACTIONS(3032), 1, + anon_sym_PLUS, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3138), 1, - anon_sym_PLUS, - ACTIONS(3184), 1, - anon_sym_COLON, - ACTIONS(3214), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RBRACK, - STATE(2881), 1, - aux_sym_subscript_repeat1, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3162), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153918] = 10, - ACTIONS(3074), 1, + ACTIONS(3128), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [152241] = 10, + ACTIONS(3032), 1, anon_sym_PLUS, - ACTIONS(3098), 1, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3218), 1, + ACTIONS(3164), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3188), 3, + ACTIONS(3128), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [153954] = 10, - ACTIONS(3074), 1, + [152277] = 10, + ACTIONS(3032), 1, anon_sym_PLUS, - ACTIONS(3098), 1, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3220), 1, + ACTIONS(3166), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3188), 3, + ACTIONS(3128), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [153990] = 8, - ACTIONS(2032), 1, + [152313] = 8, + ACTIONS(2179), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2183), 1, anon_sym_is, - ACTIONS(3180), 1, + ACTIONS(3160), 1, anon_sym_EQ, - STATE(2157), 1, + STATE(2156), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2181), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3178), 2, + ACTIONS(3158), 2, anon_sym_COLON, anon_sym_PLUS_EQ, - ACTIONS(2024), 5, + ACTIONS(2177), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154022] = 10, - ACTIONS(3074), 1, - anon_sym_PLUS, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, - ACTIONS(3222), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3188), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [154058] = 12, - ACTIONS(3124), 1, + [152345] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3184), 1, + ACTIONS(3134), 1, anon_sym_COLON, - ACTIONS(3224), 1, + ACTIONS(3168), 1, anon_sym_COMMA, - ACTIONS(3226), 1, + ACTIONS(3170), 1, anon_sym_RBRACK, - STATE(2809), 1, + STATE(2832), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -150482,122 +146646,119 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154098] = 12, - ACTIONS(3124), 1, + [152385] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3184), 1, - anon_sym_COLON, - ACTIONS(3228), 1, - anon_sym_COMMA, - ACTIONS(3230), 1, - anon_sym_RBRACK, - STATE(2782), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154138] = 12, - ACTIONS(3124), 1, + ACTIONS(1241), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + [152419] = 10, + ACTIONS(3032), 1, + anon_sym_PLUS, + ACTIONS(3040), 1, + anon_sym_and, + ACTIONS(3042), 1, + anon_sym_or, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3172), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(3128), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [152455] = 7, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3184), 1, - anon_sym_COLON, - ACTIONS(3232), 1, - anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_RBRACK, - STATE(2786), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154178] = 10, - ACTIONS(3074), 1, + ACTIONS(1197), 6, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + [152485] = 10, + ACTIONS(3032), 1, anon_sym_PLUS, - ACTIONS(3098), 1, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3236), 1, + ACTIONS(3174), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3188), 3, + ACTIONS(3128), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [154214] = 5, - STATE(344), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1479), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3238), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1477), 8, - sym_string_start, - anon_sym_in, - anon_sym_not, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [154240] = 4, - ACTIONS(3138), 1, + [152521] = 4, + ACTIONS(3084), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1445), 10, + ACTIONS(1070), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -150608,449 +146769,577 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [154264] = 10, - ACTIONS(3074), 1, + [152545] = 10, + ACTIONS(3032), 1, anon_sym_PLUS, - ACTIONS(3098), 1, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3240), 1, + ACTIONS(3176), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3188), 3, + ACTIONS(3128), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [154300] = 11, - ACTIONS(3242), 1, + [152581] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3246), 1, - anon_sym_COMMA, - ACTIONS(3248), 1, - anon_sym_RPAREN, - ACTIONS(3250), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - STATE(2767), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3134), 1, + anon_sym_COLON, + ACTIONS(3178), 1, + anon_sym_COMMA, + ACTIONS(3180), 1, + anon_sym_RBRACK, + STATE(2750), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154337] = 10, - ACTIONS(754), 1, - anon_sym_COLON, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3134), 1, + [152621] = 10, + ACTIONS(3032), 1, + anon_sym_PLUS, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3138), 1, - anon_sym_PLUS, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3182), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(752), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1473), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154372] = 10, - ACTIONS(1388), 1, - anon_sym_LF, - ACTIONS(3256), 1, - anon_sym_as, - ACTIONS(3258), 1, - anon_sym_if, - ACTIONS(3260), 1, - anon_sym_and, - ACTIONS(3262), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3128), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [152657] = 5, + STATE(359), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, + ACTIONS(1020), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3184), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1390), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154407] = 11, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(1022), 8, + sym_string_start, + anon_sym_in, + anon_sym_not, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [152683] = 10, + ACTIONS(3032), 1, + anon_sym_PLUS, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3254), 1, - anon_sym_PLUS, - ACTIONS(3266), 1, - anon_sym_COMMA, - ACTIONS(3268), 1, - anon_sym_RPAREN, - STATE(2743), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3186), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154444] = 5, - ACTIONS(1465), 1, - anon_sym_LF, - ACTIONS(3264), 1, + ACTIONS(3128), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [152719] = 4, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1467), 8, + ACTIONS(916), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [154469] = 5, - ACTIONS(1445), 1, - anon_sym_LF, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1447), 8, - anon_sym_DOT, + [152743] = 12, + ACTIONS(3070), 1, anon_sym_as, + ACTIONS(3072), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, + ACTIONS(3080), 1, anon_sym_and, + ACTIONS(3082), 1, anon_sym_or, - [154494] = 5, - ACTIONS(1439), 1, - anon_sym_LF, - ACTIONS(3264), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1441), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(3134), 1, + anon_sym_COLON, + ACTIONS(3188), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [154519] = 4, - ACTIONS(3270), 1, - anon_sym_PLUS, + ACTIONS(3190), 1, + anon_sym_RBRACK, + STATE(2683), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1465), 9, - anon_sym_DOT, + [152783] = 10, + ACTIONS(3070), 1, anon_sym_as, + ACTIONS(3072), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [154542] = 8, - ACTIONS(1503), 1, - anon_sym_LF, - ACTIONS(3260), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3262), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3264), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3192), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1562), 2, + ACTIONS(1368), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1501), 4, + [152818] = 11, + ACTIONS(3194), 1, anon_sym_as, + ACTIONS(3196), 1, anon_sym_if, + ACTIONS(3198), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [154573] = 7, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3272), 1, + ACTIONS(3200), 1, + anon_sym_RPAREN, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3274), 1, + ACTIONS(3204), 1, anon_sym_or, + ACTIONS(3206), 1, + anon_sym_PLUS, + STATE(2700), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1503), 5, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [154602] = 10, - ACTIONS(3256), 1, + [152855] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + STATE(2095), 1, + aux_sym_comparison_operator_repeat1, + STATE(2884), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [152886] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + STATE(2095), 1, + aux_sym_comparison_operator_repeat1, + STATE(2885), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [152917] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + STATE(2095), 1, + aux_sym_comparison_operator_repeat1, + STATE(2846), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [152948] = 10, + ACTIONS(2726), 1, + anon_sym_LF, + ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3258), 1, + ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3260), 1, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3262), 1, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3264), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3278), 1, - anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(973), 2, + ACTIONS(1128), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3276), 2, + ACTIONS(2720), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1562), 2, + STATE(1499), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154637] = 4, - ACTIONS(3280), 1, + [152983] = 11, + ACTIONS(3194), 1, + anon_sym_as, + ACTIONS(3196), 1, + anon_sym_if, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + ACTIONS(3206), 1, anon_sym_PLUS, + ACTIONS(3218), 1, + anon_sym_COMMA, + ACTIONS(3220), 1, + anon_sym_RPAREN, + STATE(2681), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, + ACTIONS(788), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1465), 9, - sym__newline, - anon_sym_DOT, + [153020] = 9, + ACTIONS(3222), 1, anon_sym_as, + ACTIONS(3224), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_QMARK_DOT, + ACTIONS(3226), 1, anon_sym_and, + ACTIONS(3228), 1, anon_sym_or, - [154660] = 4, - ACTIONS(3280), 1, + ACTIONS(3230), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1445), 9, + ACTIONS(1241), 3, sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, anon_sym_COMMA, anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [154683] = 8, + [153053] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2921), 1, + STATE(2848), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154714] = 11, - ACTIONS(3242), 1, + [153084] = 11, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3282), 1, + ACTIONS(3232), 1, anon_sym_COMMA, - ACTIONS(3284), 1, + ACTIONS(3234), 1, anon_sym_RPAREN, - STATE(2857), 1, + STATE(2722), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154751] = 8, + [153121] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2924), 1, + STATE(2855), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154782] = 8, + [153152] = 11, + ACTIONS(3222), 1, + anon_sym_as, + ACTIONS(3224), 1, + anon_sym_if, + ACTIONS(3226), 1, + anon_sym_and, + ACTIONS(3228), 1, + anon_sym_or, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3236), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_else, + ACTIONS(3240), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [153189] = 7, + ACTIONS(3242), 1, + anon_sym_and, + ACTIONS(3244), 1, + anon_sym_or, + ACTIONS(3246), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1197), 5, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [153218] = 10, + ACTIONS(1241), 1, + anon_sym_LF, + ACTIONS(3208), 1, + anon_sym_as, + ACTIONS(3210), 1, + anon_sym_if, + ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, + anon_sym_or, + ACTIONS(3216), 1, + anon_sym_PLUS, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1128), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1243), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [153253] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2901), 1, + STATE(2891), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154813] = 8, + [153284] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2959), 1, + STATE(2876), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154844] = 4, - ACTIONS(3270), 1, + [153315] = 4, + ACTIONS(3246), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1430), 9, + ACTIONS(1070), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -151060,409 +147349,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [154867] = 4, - ACTIONS(3280), 1, + [153338] = 4, + ACTIONS(3246), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1506), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1439), 9, - sym__newline, + ACTIONS(916), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [154890] = 9, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, - ACTIONS(3286), 1, + [153361] = 4, + ACTIONS(3246), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2756), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_for, - [154923] = 9, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3272), 1, - anon_sym_and, - ACTIONS(3274), 1, - anon_sym_or, - ACTIONS(3288), 1, + ACTIONS(1074), 9, + anon_sym_DOT, anon_sym_as, - ACTIONS(3290), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3292), 3, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LBRACE, - [154956] = 8, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [153384] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2914), 1, + STATE(2858), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154987] = 9, - ACTIONS(3270), 1, + [153415] = 4, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(3272), 1, - anon_sym_and, - ACTIONS(3274), 1, - anon_sym_or, - ACTIONS(3288), 1, - anon_sym_as, - ACTIONS(3290), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1388), 3, + ACTIONS(1070), 9, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [155020] = 8, + anon_sym_else, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [153438] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2911), 1, + STATE(2842), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155051] = 8, + [153469] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2915), 1, + STATE(2841), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155082] = 8, + [153500] = 9, + ACTIONS(3242), 1, + anon_sym_and, + ACTIONS(3244), 1, + anon_sym_or, + ACTIONS(3246), 1, + anon_sym_PLUS, + ACTIONS(3248), 1, + anon_sym_as, + ACTIONS(3250), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(3252), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [153533] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2917), 1, + STATE(2875), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155113] = 4, - ACTIONS(3270), 1, + [153564] = 4, + ACTIONS(3230), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1439), 9, + ACTIONS(916), 9, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [155136] = 9, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3296), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3294), 3, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_for, - [155169] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(2157), 1, - aux_sym_comparison_operator_repeat1, - STATE(2957), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155200] = 11, - ACTIONS(3242), 1, + [153587] = 11, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3298), 1, + ACTIONS(3254), 1, anon_sym_COMMA, - ACTIONS(3300), 1, + ACTIONS(3256), 1, anon_sym_RPAREN, - STATE(2882), 1, + STATE(2796), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155237] = 9, - ACTIONS(3168), 1, - anon_sym_PLUS, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3302), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [155270] = 8, + [153624] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2923), 1, + STATE(2890), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155301] = 4, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 9, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [155324] = 10, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3134), 1, + [153655] = 7, + ACTIONS(3226), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3228), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(3184), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3304), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1473), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155359] = 10, - ACTIONS(2750), 1, - anon_sym_LF, - ACTIONS(3256), 1, + ACTIONS(1197), 5, + sym__newline, anon_sym_as, - ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3260), 1, - anon_sym_and, - ACTIONS(3262), 1, - anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(973), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2748), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1562), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155394] = 10, - ACTIONS(3124), 1, + anon_sym_else, + [153684] = 10, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3306), 1, + ACTIONS(3134), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, @@ -151470,1009 +147631,1137 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1119), 2, + ACTIONS(3258), 2, anon_sym_COMMA, anon_sym_RBRACK, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155429] = 11, + [153719] = 9, ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3244), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3246), 1, anon_sym_PLUS, - ACTIONS(3308), 1, - anon_sym_COMMA, - ACTIONS(3310), 1, - anon_sym_RPAREN, - STATE(2833), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3248), 1, + anon_sym_as, + ACTIONS(3250), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155466] = 11, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, - anon_sym_and, - ACTIONS(3252), 1, - anon_sym_or, - ACTIONS(3254), 1, - anon_sym_PLUS, - ACTIONS(3312), 1, + ACTIONS(3260), 3, anon_sym_COMMA, - ACTIONS(3314), 1, - anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_argument_list_repeat1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [153752] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + STATE(2095), 1, + aux_sym_comparison_operator_repeat1, + STATE(2852), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155503] = 8, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [153783] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2899), 1, + STATE(2839), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155534] = 5, - ACTIONS(1430), 1, - anon_sym_LF, + [153814] = 9, + ACTIONS(3040), 1, + anon_sym_and, + ACTIONS(3042), 1, + anon_sym_or, + ACTIONS(3058), 1, + anon_sym_as, ACTIONS(3264), 1, + anon_sym_COMMA, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1562), 2, + ACTIONS(1627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1432), 8, - anon_sym_DOT, - anon_sym_as, + ACTIONS(3262), 3, anon_sym_if, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [155559] = 11, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, + anon_sym_for, + [153847] = 11, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3318), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3320), 1, - anon_sym_COMMA, - ACTIONS(3322), 1, - anon_sym_else, - ACTIONS(3324), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3326), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3328), 1, - sym__newline, + ACTIONS(3206), 1, + anon_sym_PLUS, + ACTIONS(3268), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, + anon_sym_RPAREN, + STATE(2754), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155596] = 9, - ACTIONS(3168), 1, - anon_sym_PLUS, - ACTIONS(3170), 1, + [153884] = 9, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, + ACTIONS(3084), 1, + anon_sym_PLUS, + ACTIONS(3272), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3188), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [155629] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(2157), 1, - aux_sym_comparison_operator_repeat1, - STATE(2950), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155660] = 4, - ACTIONS(3270), 1, + ACTIONS(3262), 3, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_for, + [153917] = 11, + ACTIONS(3194), 1, + anon_sym_as, + ACTIONS(3196), 1, + anon_sym_if, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + ACTIONS(3206), 1, + anon_sym_PLUS, + ACTIONS(3274), 1, + anon_sym_COMMA, + ACTIONS(3276), 1, + anon_sym_RPAREN, + STATE(2771), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(788), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [153954] = 4, + ACTIONS(3230), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1445), 9, + ACTIONS(1074), 9, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [155683] = 8, + [153977] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2936), 1, + STATE(2834), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155714] = 9, - ACTIONS(3270), 1, - anon_sym_PLUS, - ACTIONS(3272), 1, - anon_sym_and, - ACTIONS(3274), 1, - anon_sym_or, - ACTIONS(3288), 1, + [154008] = 10, + ACTIONS(826), 1, + anon_sym_COLON, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3290), 1, + ACTIONS(3072), 1, anon_sym_if, + ACTIONS(3080), 1, + anon_sym_and, + ACTIONS(3082), 1, + anon_sym_or, + ACTIONS(3084), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + ACTIONS(824), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3330), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [155747] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(2157), 1, - aux_sym_comparison_operator_repeat1, - STATE(2904), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155778] = 8, + [154043] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2941), 1, + STATE(2868), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155809] = 11, - ACTIONS(3242), 1, + [154074] = 11, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3332), 1, + ACTIONS(3278), 1, anon_sym_COMMA, - ACTIONS(3334), 1, + ACTIONS(3280), 1, anon_sym_RPAREN, - STATE(2736), 1, + STATE(2686), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155846] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(2157), 1, - aux_sym_comparison_operator_repeat1, - STATE(2937), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155877] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(2157), 1, - aux_sym_comparison_operator_repeat1, - STATE(2910), 1, - sym_string, - ACTIONS(3), 2, + [154111] = 5, + ACTIONS(1074), 1, + anon_sym_LF, + ACTIONS(3216), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155908] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1072), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(3318), 1, anon_sym_if, - ACTIONS(3324), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3326), 1, anon_sym_or, + [154136] = 9, + ACTIONS(3040), 1, + anon_sym_and, + ACTIONS(3042), 1, + anon_sym_or, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1388), 3, - sym__newline, + ACTIONS(2730), 3, anon_sym_COMMA, - anon_sym_else, - [155941] = 7, - ACTIONS(3280), 1, + anon_sym_RBRACE, + anon_sym_for, + [154169] = 9, + ACTIONS(3118), 1, anon_sym_PLUS, - ACTIONS(3324), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3326), 1, + ACTIONS(3122), 1, anon_sym_or, + ACTIONS(3124), 1, + anon_sym_as, + ACTIONS(3126), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1503), 5, - sym__newline, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - [155970] = 11, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3128), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [154202] = 8, + ACTIONS(1197), 1, + anon_sym_LF, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3336), 1, - anon_sym_COMMA, - ACTIONS(3338), 1, - anon_sym_RPAREN, - STATE(2883), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(1128), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1499), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156007] = 9, - ACTIONS(3124), 1, + ACTIONS(1199), 4, anon_sym_as, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_PLUS, - ACTIONS(3340), 1, + anon_sym_if, anon_sym_COMMA, + anon_sym_RBRACE, + [154233] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + STATE(2095), 1, + aux_sym_comparison_operator_repeat1, + STATE(2847), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1473), 2, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [154264] = 5, + ACTIONS(916), 1, + anon_sym_LF, + ACTIONS(3216), 1, + anon_sym_PLUS, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(1499), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3294), 3, + ACTIONS(918), 8, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [156040] = 11, - ACTIONS(3242), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [154289] = 11, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3282), 1, anon_sym_COMMA, - ACTIONS(3344), 1, + ACTIONS(3284), 1, anon_sym_RPAREN, - STATE(2875), 1, + STATE(2773), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156077] = 8, + [154326] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2032), 1, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2157), 1, + STATE(2095), 1, aux_sym_comparison_operator_repeat1, - STATE(2897), 1, + STATE(2845), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [156108] = 9, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, + [154357] = 10, + ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, + anon_sym_or, + ACTIONS(3216), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(3288), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1128), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2750), 2, + ACTIONS(3286), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1211), 2, + STATE(1499), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156140] = 10, - ACTIONS(3098), 1, + [154392] = 9, + ACTIONS(3118), 1, + anon_sym_PLUS, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3346), 1, - anon_sym_else, - ACTIONS(3348), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156174] = 7, - ACTIONS(3250), 1, + ACTIONS(3290), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [154425] = 9, + ACTIONS(3242), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3244), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3246), 1, anon_sym_PLUS, + ACTIONS(3248), 1, + anon_sym_as, + ACTIONS(3250), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1503), 4, + ACTIONS(1241), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [154458] = 11, + ACTIONS(3194), 1, anon_sym_as, + ACTIONS(3196), 1, anon_sym_if, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + ACTIONS(3206), 1, + anon_sym_PLUS, + ACTIONS(3292), 1, anon_sym_COMMA, + ACTIONS(3294), 1, anon_sym_RPAREN, - [156202] = 7, - ACTIONS(473), 1, + STATE(2831), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(788), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [154495] = 5, + ACTIONS(1070), 1, + anon_sym_LF, + ACTIONS(3216), 1, + anon_sym_PLUS, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(1499), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1068), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [154520] = 7, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3350), 1, + ACTIONS(3296), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3354), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(3188), 1, + STATE(3138), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, + STATE(3085), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [156230] = 10, - ACTIONS(3098), 1, + [154548] = 7, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(3296), 1, + sym_identifier, + ACTIONS(3298), 1, + anon_sym_LBRACK, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(3130), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3085), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [154576] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3356), 1, + ACTIONS(3304), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156264] = 10, - ACTIONS(3098), 1, + [154610] = 7, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(3296), 1, + sym_identifier, + ACTIONS(3298), 1, + anon_sym_LBRACK, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(3139), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3085), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [154638] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3358), 1, + ACTIONS(3306), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156298] = 4, - ACTIONS(3254), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1674), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1439), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, + [154672] = 9, + ACTIONS(3040), 1, anon_sym_and, + ACTIONS(3042), 1, anon_sym_or, - [156320] = 10, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, - anon_sym_else, - ACTIONS(3360), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + ACTIONS(2726), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156354] = 7, - ACTIONS(473), 1, + [154704] = 7, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3350), 1, + ACTIONS(3296), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3354), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(3192), 1, + STATE(3131), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, + STATE(3085), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [156382] = 10, - ACTIONS(3098), 1, + [154732] = 7, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(3296), 1, + sym_identifier, + ACTIONS(3298), 1, + anon_sym_LBRACK, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(2952), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3085), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [154760] = 7, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(3296), 1, + sym_identifier, + ACTIONS(3298), 1, + anon_sym_LBRACK, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(3127), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3085), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [154788] = 7, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(3296), 1, + sym_identifier, + ACTIONS(3298), 1, + anon_sym_LBRACK, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(3126), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3085), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [154816] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3362), 1, + ACTIONS(3308), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156416] = 10, - ACTIONS(3098), 1, + [154850] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3364), 1, + ACTIONS(3310), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156450] = 10, - ACTIONS(3098), 1, + [154884] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3366), 1, + ACTIONS(3312), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156484] = 10, - ACTIONS(3098), 1, + [154918] = 8, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3346), 1, - anon_sym_else, - ACTIONS(3368), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156518] = 7, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(3350), 1, - sym_identifier, - ACTIONS(3352), 1, - anon_sym_LBRACK, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(3133), 1, - sym_quant_target, + ACTIONS(3314), 3, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_for, + [154948] = 4, + ACTIONS(3206), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [156546] = 7, - ACTIONS(473), 1, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1074), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [154970] = 7, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3350), 1, + ACTIONS(3296), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3354), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(3191), 1, + STATE(3134), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, + STATE(3085), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [156574] = 10, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, + [154998] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3080), 1, + anon_sym_and, + ACTIONS(3082), 1, + anon_sym_or, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3346), 1, - anon_sym_else, - ACTIONS(3370), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + ACTIONS(3316), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156608] = 7, - ACTIONS(473), 1, + [155030] = 7, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3350), 1, + ACTIONS(3296), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3354), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(3196), 1, + STATE(3122), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, + STATE(3085), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [156636] = 7, - ACTIONS(473), 1, + [155058] = 7, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3350), 1, + ACTIONS(3296), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3354), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(3195), 1, + STATE(3135), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, + STATE(3085), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [156664] = 4, - ACTIONS(3254), 1, - anon_sym_PLUS, + [155086] = 7, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(3296), 1, + sym_identifier, + ACTIONS(3298), 1, + anon_sym_LBRACK, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(3119), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1445), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [156686] = 10, - ACTIONS(3098), 1, + STATE(3085), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [155114] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3372), 1, + ACTIONS(3318), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156720] = 7, - ACTIONS(473), 1, + [155148] = 7, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3350), 1, + ACTIONS(3296), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3354), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(3187), 1, + STATE(3080), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, + STATE(3085), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [156748] = 9, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3134), 1, + [155176] = 7, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(3296), 1, + sym_identifier, + ACTIONS(3298), 1, + anon_sym_LBRACK, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(3118), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3085), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [155204] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, anon_sym_PLUS, + ACTIONS(3302), 1, + anon_sym_else, + ACTIONS(3320), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3374), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1473), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156780] = 9, - ACTIONS(3124), 1, + [155238] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, @@ -152480,71 +148769,113 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3376), 2, + ACTIONS(1461), 2, anon_sym_COMMA, anon_sym_RBRACK, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156812] = 10, - ACTIONS(3098), 1, + [155270] = 7, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3206), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(788), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1197), 4, anon_sym_as, - ACTIONS(3110), 1, anon_sym_if, - ACTIONS(3286), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + [155298] = 7, + ACTIONS(2333), 1, + anon_sym_not, + ACTIONS(2349), 1, + anon_sym_is, + ACTIONS(3322), 1, + sym__newline, + STATE(2169), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2347), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2325), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [155326] = 10, + ACTIONS(3040), 1, + anon_sym_and, + ACTIONS(3042), 1, + anon_sym_or, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3378), 1, + ACTIONS(3324), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156846] = 7, - ACTIONS(473), 1, + [155360] = 7, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3350), 1, + ACTIONS(3296), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3354), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(3168), 1, + STATE(3115), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, + STATE(3085), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [156874] = 10, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, + [155388] = 10, + ACTIONS(3222), 1, anon_sym_as, - ACTIONS(3324), 1, + ACTIONS(3226), 1, anon_sym_and, - ACTIONS(3326), 1, + ACTIONS(3228), 1, anon_sym_or, - ACTIONS(3380), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3326), 1, anon_sym_if, - ACTIONS(3382), 1, + ACTIONS(3328), 1, anon_sym_COMMA, - ACTIONS(3384), 1, + ACTIONS(3330), 1, sym__newline, ACTIONS(3), 2, sym_comment, @@ -152552,87 +148883,112 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156908] = 8, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3134), 1, + [155422] = 7, + ACTIONS(467), 1, + sym_string_start, + ACTIONS(3296), 1, + sym_identifier, + ACTIONS(3298), 1, + anon_sym_LBRACK, + ACTIONS(3300), 1, + anon_sym_LBRACE, + STATE(3114), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3085), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [155450] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, anon_sym_PLUS, + ACTIONS(3302), 1, + anon_sym_else, + ACTIONS(3332), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3386), 3, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [156938] = 9, - ACTIONS(3124), 1, + [155484] = 10, + ACTIONS(3222), 1, anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3226), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3228), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3230), 1, anon_sym_PLUS, + ACTIONS(3334), 1, + anon_sym_if, + ACTIONS(3336), 1, + anon_sym_COMMA, + ACTIONS(3338), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1119), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1473), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156970] = 9, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3134), 1, + [155518] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, anon_sym_PLUS, + ACTIONS(3302), 1, + anon_sym_else, + ACTIONS(3340), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1139), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1473), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157002] = 4, - ACTIONS(3254), 1, + [155552] = 4, + ACTIONS(3206), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1430), 8, + ACTIONS(916), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -152641,1362 +148997,1293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [157024] = 10, - ACTIONS(3098), 1, + [155574] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3388), 1, + ACTIONS(3342), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157058] = 10, - ACTIONS(3098), 1, + [155608] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3390), 1, + ACTIONS(3344), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157092] = 10, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, - anon_sym_as, - ACTIONS(3324), 1, - anon_sym_and, - ACTIONS(3326), 1, - anon_sym_or, - ACTIONS(3392), 1, - anon_sym_if, - ACTIONS(3394), 1, - anon_sym_COMMA, - ACTIONS(3396), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157126] = 7, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(3350), 1, - sym_identifier, - ACTIONS(3352), 1, - anon_sym_LBRACK, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(3184), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2980), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [157154] = 7, - ACTIONS(2427), 1, - anon_sym_not, - ACTIONS(2431), 1, - anon_sym_is, - ACTIONS(3398), 1, - sym__newline, - STATE(2223), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2429), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2425), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [157182] = 7, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(3350), 1, - sym_identifier, - ACTIONS(3352), 1, - anon_sym_LBRACK, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(2983), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2980), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [157210] = 10, - ACTIONS(3098), 1, + [155642] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3400), 1, + ACTIONS(3346), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157244] = 7, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(3350), 1, - sym_identifier, - ACTIONS(3352), 1, - anon_sym_LBRACK, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(3199), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2980), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [157272] = 7, - ACTIONS(473), 1, + [155676] = 7, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3350), 1, + ACTIONS(3296), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3354), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(3200), 1, + STATE(3083), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, + STATE(3085), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [157300] = 10, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, + [155704] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3324), 1, + ACTIONS(3072), 1, + anon_sym_if, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3326), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3402), 1, - anon_sym_if, - ACTIONS(3404), 1, - anon_sym_COMMA, - ACTIONS(3406), 1, - sym__newline, + ACTIONS(3084), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + ACTIONS(1368), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157334] = 4, - ACTIONS(3254), 1, + [155736] = 9, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3072), 1, + anon_sym_if, + ACTIONS(3080), 1, + anon_sym_and, + ACTIONS(3082), 1, + anon_sym_or, + ACTIONS(3084), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1674), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1465), 8, + ACTIONS(525), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_QMARK_DOT, + ACTIONS(3348), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [155768] = 8, + ACTIONS(3040), 1, anon_sym_and, + ACTIONS(3042), 1, anon_sym_or, - [157356] = 7, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(3350), 1, - sym_identifier, - ACTIONS(3352), 1, - anon_sym_LBRACK, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(3203), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2980), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [157384] = 10, - ACTIONS(3098), 1, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(3314), 3, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_for, + [155798] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3302), 1, anon_sym_else, - ACTIONS(3408), 1, + ACTIONS(3350), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157418] = 7, - ACTIONS(473), 1, + [155832] = 7, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3350), 1, + ACTIONS(3296), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3354), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(3204), 1, + STATE(3079), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, + STATE(3085), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [157446] = 9, - ACTIONS(3124), 1, + [155860] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3206), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3410), 2, + ACTIONS(3352), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1473), 2, + anon_sym_RPAREN, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157478] = 7, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(3350), 1, - sym_identifier, - ACTIONS(3352), 1, - anon_sym_LBRACK, + [155892] = 10, + ACTIONS(3040), 1, + anon_sym_and, + ACTIONS(3042), 1, + anon_sym_or, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(3302), 1, + anon_sym_else, ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(3183), 1, - sym_quant_target, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [157506] = 9, - ACTIONS(3242), 1, + ACTIONS(1627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [155926] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3206), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3412), 2, + ACTIONS(1241), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157538] = 9, - ACTIONS(3242), 1, + [155958] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3084), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1388), 2, + ACTIONS(3356), 2, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1674), 2, + anon_sym_RBRACK, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157570] = 7, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(3350), 1, - sym_identifier, - ACTIONS(3352), 1, - anon_sym_LBRACK, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(3207), 1, - sym_quant_target, + [155990] = 10, + ACTIONS(3040), 1, + anon_sym_and, + ACTIONS(3042), 1, + anon_sym_or, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(3302), 1, + anon_sym_else, + ACTIONS(3358), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [157598] = 9, - ACTIONS(3242), 1, + ACTIONS(1627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156024] = 10, + ACTIONS(3222), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3226), 1, + anon_sym_and, + ACTIONS(3228), 1, + anon_sym_or, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3360), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3362), 1, + anon_sym_COMMA, + ACTIONS(3364), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156058] = 10, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, anon_sym_PLUS, + ACTIONS(3302), 1, + anon_sym_else, + ACTIONS(3366), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3414), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1674), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157630] = 7, - ACTIONS(473), 1, - sym_string_start, - ACTIONS(3350), 1, - sym_identifier, - ACTIONS(3352), 1, - anon_sym_LBRACK, - ACTIONS(3354), 1, - anon_sym_LBRACE, - STATE(3208), 1, - sym_quant_target, + [156092] = 4, + ACTIONS(3206), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [157658] = 8, - ACTIONS(3098), 1, + STATE(1648), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1070), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3100), 1, anon_sym_or, - ACTIONS(3108), 1, + [156114] = 10, + ACTIONS(3040), 1, + anon_sym_and, + ACTIONS(3042), 1, + anon_sym_or, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, anon_sym_PLUS, + ACTIONS(3302), 1, + anon_sym_else, + ACTIONS(3368), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3386), 3, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_for, - [157688] = 7, - ACTIONS(473), 1, + [156148] = 7, + ACTIONS(467), 1, sym_string_start, - ACTIONS(3350), 1, + ACTIONS(3296), 1, sym_identifier, - ACTIONS(3352), 1, + ACTIONS(3298), 1, anon_sym_LBRACK, - ACTIONS(3354), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, - STATE(3172), 1, + STATE(3123), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2980), 6, + STATE(3085), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [157716] = 10, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, + [156176] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3346), 1, - anon_sym_else, - ACTIONS(3416), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + ACTIONS(3370), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157750] = 10, - ACTIONS(3098), 1, + [156208] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3372), 1, anon_sym_else, - ACTIONS(3418), 1, - anon_sym_RBRACE, + ACTIONS(3374), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157784] = 10, - ACTIONS(3098), 1, + [156239] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3346), 1, + ACTIONS(3376), 1, anon_sym_else, - ACTIONS(3420), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157818] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [156270] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3330), 1, - anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3080), 1, + anon_sym_and, + ACTIONS(3082), 1, + anon_sym_or, + ACTIONS(3084), 1, anon_sym_PLUS, + ACTIONS(3378), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157849] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, - anon_sym_as, - ACTIONS(3318), 1, - anon_sym_if, - ACTIONS(3324), 1, + [156301] = 6, + ACTIONS(2016), 1, + anon_sym_not, + ACTIONS(2034), 1, + anon_sym_is, + STATE(2095), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2008), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [156326] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3326), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3424), 1, - sym__newline, + ACTIONS(3124), 1, + anon_sym_as, + ACTIONS(3126), 1, + anon_sym_if, + ACTIONS(3374), 1, + anon_sym_PLUS, + ACTIONS(3380), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157880] = 9, - ACTIONS(3242), 1, + [156357] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3426), 1, + ACTIONS(3382), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157911] = 9, - ACTIONS(3098), 1, + [156388] = 6, + ACTIONS(2608), 1, + anon_sym_not, + ACTIONS(2612), 1, + anon_sym_is, + STATE(2181), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2610), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2606), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [156413] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3428), 1, + ACTIONS(3384), 1, anon_sym_if, - ACTIONS(3430), 1, + ACTIONS(3386), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157942] = 9, - ACTIONS(3098), 1, + [156444] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3432), 1, + ACTIONS(3388), 1, anon_sym_if, - ACTIONS(3434), 1, + ACTIONS(3390), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157973] = 9, - ACTIONS(3098), 1, + [156475] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3436), 1, + ACTIONS(3392), 1, + anon_sym_if, + ACTIONS(3394), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158004] = 6, - ACTIONS(2205), 1, - anon_sym_not, - ACTIONS(2209), 1, - anon_sym_is, - STATE(2208), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2207), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2203), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [158029] = 9, - ACTIONS(3242), 1, + [156506] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3438), 1, + ACTIONS(3396), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158060] = 9, - ACTIONS(3098), 1, + [156537] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3440), 1, + ACTIONS(3398), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158091] = 9, - ACTIONS(3098), 1, + [156568] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3252), 1, + anon_sym_COLON, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3442), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158122] = 9, - ACTIONS(3170), 1, + [156599] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(3400), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3402), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156630] = 9, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3072), 1, + anon_sym_if, + ACTIONS(3080), 1, + anon_sym_and, + ACTIONS(3082), 1, + anon_sym_or, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3444), 1, - anon_sym_COLON, + ACTIONS(3404), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158153] = 9, - ACTIONS(3098), 1, + [156661] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3446), 1, + ACTIONS(3406), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158184] = 9, - ACTIONS(3170), 1, + [156692] = 6, + ACTIONS(2608), 1, + anon_sym_not, + ACTIONS(2612), 1, + anon_sym_is, + STATE(1887), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2610), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2606), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [156717] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_then, + ACTIONS(3408), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158215] = 9, - ACTIONS(3170), 1, + [156748] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3450), 1, - anon_sym_else, + ACTIONS(3410), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158246] = 9, - ACTIONS(3098), 1, + [156779] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3452), 1, + ACTIONS(3412), 1, anon_sym_if, - ACTIONS(3454), 1, + ACTIONS(3414), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158277] = 9, - ACTIONS(3170), 1, + [156810] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3456), 1, - anon_sym_COLON, + ACTIONS(3416), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158308] = 9, - ACTIONS(3124), 1, + [156841] = 9, + ACTIONS(3222), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3224), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3226), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3228), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(3458), 1, - anon_sym_RBRACK, + ACTIONS(3240), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158339] = 6, - ACTIONS(3460), 1, - anon_sym_not, - ACTIONS(3462), 1, - anon_sym_is, - STATE(527), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1284), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1306), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [158364] = 6, - ACTIONS(3460), 1, - anon_sym_not, - ACTIONS(3462), 1, - anon_sym_is, - STATE(1100), 1, - aux_sym_comparison_operator_repeat1, + [156872] = 9, + ACTIONS(3040), 1, + anon_sym_and, + ACTIONS(3042), 1, + anon_sym_or, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(3418), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1306), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [158389] = 9, + ACTIONS(1627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156903] = 9, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, ACTIONS(3124), 1, anon_sym_as, ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3464), 1, - anon_sym_RBRACK, + ACTIONS(3420), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158420] = 9, - ACTIONS(3170), 1, + [156934] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3322), 1, - anon_sym_else, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, + ACTIONS(3422), 1, + anon_sym_if, + ACTIONS(3424), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158451] = 6, - ACTIONS(3466), 1, + [156965] = 6, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(3468), 1, + ACTIONS(2056), 1, anon_sym_is, - STATE(1072), 1, + STATE(2185), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1934), 5, + ACTIONS(910), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [158476] = 9, - ACTIONS(3124), 1, - anon_sym_as, - ACTIONS(3126), 1, - anon_sym_if, - ACTIONS(3134), 1, + [156990] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3470), 1, - anon_sym_RBRACK, + ACTIONS(3426), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158507] = 9, - ACTIONS(3170), 1, + [157021] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3472), 1, - anon_sym_else, + ACTIONS(3428), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158538] = 6, - ACTIONS(3474), 1, - anon_sym_not, - ACTIONS(3476), 1, - anon_sym_is, - STATE(1129), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1231), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1253), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [158563] = 6, - ACTIONS(2398), 1, + [157052] = 6, + ACTIONS(2261), 1, anon_sym_not, - ACTIONS(2402), 1, + ACTIONS(2269), 1, anon_sym_is, - STATE(1656), 1, + STATE(1536), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, + ACTIONS(2267), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2396), 5, + ACTIONS(2259), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [158588] = 9, - ACTIONS(3170), 1, + [157077] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3478), 1, - anon_sym_else, + ACTIONS(3430), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158619] = 9, - ACTIONS(3170), 1, + [157108] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3480), 1, - anon_sym_else, + ACTIONS(3432), 1, + anon_sym_if, + ACTIONS(3434), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158650] = 6, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - STATE(2051), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [158675] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [157139] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3482), 1, - anon_sym_else, + ACTIONS(3436), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158706] = 6, - ACTIONS(3474), 1, + [157170] = 6, + ACTIONS(2179), 1, anon_sym_not, - ACTIONS(3476), 1, + ACTIONS(2183), 1, anon_sym_is, - STATE(531), 1, + STATE(1429), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1231), 2, + ACTIONS(2181), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1253), 5, + ACTIONS(2177), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [158731] = 9, - ACTIONS(3124), 1, + [157195] = 9, + ACTIONS(3222), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3224), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3226), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3228), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(3484), 1, - anon_sym_RBRACK, + ACTIONS(3438), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158762] = 9, - ACTIONS(3170), 1, + [157226] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3486), 1, - anon_sym_else, + ACTIONS(3440), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158793] = 9, - ACTIONS(3098), 1, + [157257] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3488), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3490), 1, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(3442), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158824] = 6, - ACTIONS(3494), 1, - anon_sym_not, - ACTIONS(3496), 1, - anon_sym_is, - STATE(1795), 1, - aux_sym_comparison_operator_repeat1, + [157288] = 9, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3072), 1, + anon_sym_if, + ACTIONS(3080), 1, + anon_sym_and, + ACTIONS(3082), 1, + anon_sym_or, + ACTIONS(3084), 1, + anon_sym_PLUS, + ACTIONS(3444), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3492), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [158849] = 9, - ACTIONS(3098), 1, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1447), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157319] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3498), 1, + ACTIONS(3446), 1, anon_sym_if, - ACTIONS(3500), 1, + ACTIONS(3448), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158880] = 9, - ACTIONS(3170), 1, + [157350] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3502), 1, + ACTIONS(3450), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, @@ -154004,172 +150291,219 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158911] = 6, - ACTIONS(3466), 1, - anon_sym_not, - ACTIONS(3468), 1, - anon_sym_is, - STATE(1188), 1, - aux_sym_comparison_operator_repeat1, + [157381] = 9, + ACTIONS(3222), 1, + anon_sym_as, + ACTIONS(3224), 1, + anon_sym_if, + ACTIONS(3226), 1, + anon_sym_and, + ACTIONS(3228), 1, + anon_sym_or, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3338), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1920), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1934), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [158936] = 9, - ACTIONS(3098), 1, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157412] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3504), 1, + ACTIONS(3452), 1, anon_sym_if, - ACTIONS(3506), 1, + ACTIONS(3454), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158967] = 9, - ACTIONS(3098), 1, + [157443] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3260), 1, + anon_sym_COLON, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3508), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158998] = 9, - ACTIONS(3098), 1, + [157474] = 9, + ACTIONS(3222), 1, + anon_sym_as, + ACTIONS(3224), 1, + anon_sym_if, + ACTIONS(3226), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3228), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1479), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157505] = 9, + ACTIONS(3040), 1, + anon_sym_and, + ACTIONS(3042), 1, + anon_sym_or, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3510), 1, + ACTIONS(3458), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159029] = 9, - ACTIONS(3098), 1, + [157536] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3126), 1, + anon_sym_if, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3512), 1, + ACTIONS(3460), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157567] = 9, + ACTIONS(3222), 1, + anon_sym_as, + ACTIONS(3224), 1, anon_sym_if, - ACTIONS(3514), 1, - anon_sym_RBRACE, + ACTIONS(3226), 1, + anon_sym_and, + ACTIONS(3228), 1, + anon_sym_or, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3322), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159060] = 9, - ACTIONS(3242), 1, + [157598] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3516), 1, - anon_sym_RPAREN, + ACTIONS(3462), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159091] = 9, - ACTIONS(3170), 1, + [157629] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3518), 1, - anon_sym_else, + ACTIONS(3464), 1, + anon_sym_if, + ACTIONS(3466), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159122] = 9, - ACTIONS(3170), 1, + [157660] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3520), 1, + ACTIONS(3468), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, @@ -154177,100 +150511,84 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159153] = 6, - ACTIONS(2076), 1, - anon_sym_not, - ACTIONS(2078), 1, - anon_sym_is, - STATE(2236), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1354), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [159178] = 6, - ACTIONS(3494), 1, - anon_sym_not, - ACTIONS(3496), 1, - anon_sym_is, - STATE(2225), 1, - aux_sym_comparison_operator_repeat1, + [157691] = 9, + ACTIONS(3040), 1, + anon_sym_and, + ACTIONS(3042), 1, + anon_sym_or, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(3470), 1, + anon_sym_if, + ACTIONS(3472), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3492), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [159203] = 9, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(1627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1185), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [157722] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3124), 1, + anon_sym_as, + ACTIONS(3126), 1, + anon_sym_if, + ACTIONS(3238), 1, + anon_sym_else, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3522), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159234] = 6, - ACTIONS(2032), 1, + [157753] = 6, + ACTIONS(2436), 1, anon_sym_not, - ACTIONS(2050), 1, + ACTIONS(2440), 1, anon_sym_is, - STATE(1296), 1, + STATE(2163), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 2, + ACTIONS(2438), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2024), 5, + ACTIONS(2434), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [159259] = 9, - ACTIONS(3170), 1, + [157778] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3524), 1, + ACTIONS(3474), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, @@ -154278,62 +150596,62 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159290] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, - anon_sym_as, - ACTIONS(3318), 1, - anon_sym_if, - ACTIONS(3324), 1, + [157809] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3326), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3526), 1, - sym__newline, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(3476), 1, + anon_sym_if, + ACTIONS(3478), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159321] = 6, - ACTIONS(2398), 1, + [157840] = 6, + ACTIONS(2016), 1, anon_sym_not, - ACTIONS(2402), 1, + ACTIONS(2034), 1, anon_sym_is, - STATE(2216), 1, + STATE(1260), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2400), 2, + ACTIONS(2032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2396), 5, + ACTIONS(2008), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [159346] = 9, - ACTIONS(3124), 1, + [157865] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3528), 1, + ACTIONS(3480), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, @@ -154341,43 +150659,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159377] = 9, - ACTIONS(3098), 1, + [157896] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3530), 1, + ACTIONS(3482), 1, anon_sym_if, - ACTIONS(3532), 1, + ACTIONS(3484), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159408] = 9, - ACTIONS(3170), 1, + [157927] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3534), 1, + ACTIONS(3486), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, @@ -154385,172 +150703,166 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159439] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, - anon_sym_as, - ACTIONS(3318), 1, - anon_sym_if, - ACTIONS(3324), 1, - anon_sym_and, - ACTIONS(3326), 1, - anon_sym_or, - ACTIONS(3536), 1, - sym__newline, + [157958] = 6, + ACTIONS(3488), 1, + anon_sym_not, + ACTIONS(3490), 1, + anon_sym_is, + STATE(1186), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [159470] = 9, - ACTIONS(3170), 1, + ACTIONS(1875), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1897), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [157983] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3538), 1, - anon_sym_else, + ACTIONS(3492), 1, + anon_sym_if, + ACTIONS(3494), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159501] = 9, - ACTIONS(3170), 1, + [158014] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3540), 1, - anon_sym_COLON, + ACTIONS(3496), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159532] = 6, - ACTIONS(2247), 1, + [158045] = 6, + ACTIONS(3500), 1, anon_sym_not, - ACTIONS(2263), 1, + ACTIONS(3502), 1, anon_sym_is, - STATE(1580), 1, + STATE(1764), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2261), 2, + ACTIONS(2297), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2239), 5, + ACTIONS(3498), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [159557] = 9, - ACTIONS(3170), 1, + [158070] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3542), 1, - anon_sym_else, + ACTIONS(3504), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159588] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3422), 1, - anon_sym_PLUS, - ACTIONS(3544), 1, - anon_sym_else, + [158101] = 6, + ACTIONS(3506), 1, + anon_sym_not, + ACTIONS(3508), 1, + anon_sym_is, + STATE(420), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [159619] = 9, - ACTIONS(3170), 1, + ACTIONS(1160), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1182), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [158126] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3292), 1, - anon_sym_COLON, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, + ACTIONS(3510), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159650] = 9, - ACTIONS(3170), 1, + [158157] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3546), 1, + ACTIONS(3512), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, @@ -154558,490 +150870,396 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159681] = 6, - ACTIONS(2427), 1, + [158188] = 6, + ACTIONS(2436), 1, anon_sym_not, - ACTIONS(2431), 1, + ACTIONS(2440), 1, anon_sym_is, - STATE(2223), 1, + STATE(1616), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2429), 2, + ACTIONS(2438), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 5, + ACTIONS(2434), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [159706] = 9, + [158213] = 9, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, ACTIONS(3124), 1, anon_sym_as, ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3548), 1, - anon_sym_RBRACK, + ACTIONS(3514), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159737] = 6, - ACTIONS(2506), 1, - anon_sym_not, - ACTIONS(2522), 1, - anon_sym_is, - STATE(1921), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2498), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [159762] = 9, - ACTIONS(3170), 1, + [158244] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3550), 1, - anon_sym_else, + ACTIONS(3516), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159793] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [158275] = 9, + ACTIONS(3222), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3224), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3226), 1, + anon_sym_and, + ACTIONS(3228), 1, + anon_sym_or, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(3552), 1, - anon_sym_else, + ACTIONS(3518), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159824] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, - anon_sym_as, - ACTIONS(3318), 1, - anon_sym_if, - ACTIONS(3324), 1, + [158306] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3326), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3384), 1, - sym__newline, + ACTIONS(3124), 1, + anon_sym_as, + ACTIONS(3126), 1, + anon_sym_if, + ACTIONS(3374), 1, + anon_sym_PLUS, + ACTIONS(3520), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159855] = 9, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, + [158337] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3080), 1, + anon_sym_and, + ACTIONS(3082), 1, + anon_sym_or, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3554), 1, - anon_sym_RBRACE, + ACTIONS(3522), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159886] = 6, - ACTIONS(2205), 1, + [158368] = 6, + ACTIONS(3506), 1, anon_sym_not, - ACTIONS(2209), 1, + ACTIONS(3508), 1, anon_sym_is, - STATE(1477), 1, + STATE(1082), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2207), 2, + ACTIONS(1160), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2203), 5, + ACTIONS(1182), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [159911] = 9, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, + [158393] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3556), 1, - anon_sym_RBRACE, + ACTIONS(3524), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159942] = 6, - ACTIONS(2247), 1, + [158424] = 6, + ACTIONS(3488), 1, anon_sym_not, - ACTIONS(2263), 1, + ACTIONS(3490), 1, anon_sym_is, - STATE(2211), 1, + STATE(1047), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2261), 2, + ACTIONS(1875), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2239), 5, + ACTIONS(1897), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [159967] = 9, - ACTIONS(3098), 1, + [158449] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3558), 1, - anon_sym_RBRACE, + ACTIONS(3526), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [159998] = 9, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3560), 1, - anon_sym_if, - ACTIONS(3562), 1, - anon_sym_RBRACE, + [158480] = 6, + ACTIONS(2261), 1, + anon_sym_not, + ACTIONS(2269), 1, + anon_sym_is, + STATE(2159), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [160029] = 6, - ACTIONS(2506), 1, + ACTIONS(2267), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2259), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [158505] = 6, + ACTIONS(2054), 1, anon_sym_not, - ACTIONS(2522), 1, + ACTIONS(2056), 1, anon_sym_is, - STATE(2232), 1, + STATE(1997), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 2, + ACTIONS(888), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 5, + ACTIONS(910), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [160054] = 9, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, + [158530] = 9, + ACTIONS(3222), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3224), 1, anon_sym_if, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3564), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [160085] = 9, - ACTIONS(3098), 1, + ACTIONS(3226), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3228), 1, anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(3566), 1, - anon_sym_if, - ACTIONS(3568), 1, - anon_sym_RBRACE, + ACTIONS(3364), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160116] = 9, - ACTIONS(3242), 1, + [158561] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3570), 1, + ACTIONS(3528), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160147] = 9, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3572), 1, - anon_sym_if, - ACTIONS(3574), 1, - anon_sym_RBRACE, + [158592] = 6, + ACTIONS(3530), 1, + anon_sym_not, + ACTIONS(3532), 1, + anon_sym_is, + STATE(1097), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [160178] = 9, - ACTIONS(3098), 1, + ACTIONS(950), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(954), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [158617] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3576), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3578), 1, - anon_sym_RBRACE, + ACTIONS(3374), 1, + anon_sym_PLUS, + ACTIONS(3534), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160209] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, - anon_sym_as, - ACTIONS(3318), 1, - anon_sym_if, - ACTIONS(3324), 1, - anon_sym_and, - ACTIONS(3326), 1, - anon_sym_or, - ACTIONS(3580), 1, - sym__newline, + [158648] = 6, + ACTIONS(3530), 1, + anon_sym_not, + ACTIONS(3532), 1, + anon_sym_is, + STATE(425), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1506), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [160240] = 9, - ACTIONS(3098), 1, + ACTIONS(950), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(954), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [158673] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3582), 1, - anon_sym_if, - ACTIONS(3584), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [160271] = 9, ACTIONS(3124), 1, anon_sym_as, ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3134), 1, - anon_sym_and, - ACTIONS(3136), 1, - anon_sym_or, - ACTIONS(3138), 1, - anon_sym_PLUS, - ACTIONS(3586), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1473), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [160302] = 9, - ACTIONS(3280), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3316), 1, - anon_sym_as, - ACTIONS(3318), 1, - anon_sym_if, - ACTIONS(3324), 1, - anon_sym_and, - ACTIONS(3326), 1, - anon_sym_or, - ACTIONS(3396), 1, - sym__newline, + ACTIONS(3536), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160333] = 9, - ACTIONS(3170), 1, + [158704] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3588), 1, + ACTIONS(3538), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, @@ -155049,649 +151267,645 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160364] = 9, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, + [158735] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3124), 1, + anon_sym_as, + ACTIONS(3126), 1, + anon_sym_if, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3590), 1, - anon_sym_RPAREN, + ACTIONS(3540), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160395] = 9, - ACTIONS(3098), 1, + [158766] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3592), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3594), 1, - anon_sym_RBRACE, + ACTIONS(3374), 1, + anon_sym_PLUS, + ACTIONS(3542), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160426] = 9, - ACTIONS(3170), 1, + [158797] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3596), 1, - anon_sym_else, + ACTIONS(3544), 1, + anon_sym_then, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160457] = 9, - ACTIONS(3124), 1, + [158828] = 9, + ACTIONS(3222), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3224), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3226), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3228), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(3598), 1, - anon_sym_RBRACK, + ACTIONS(3546), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160488] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [158859] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3346), 1, - anon_sym_else, - ACTIONS(3422), 1, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + ACTIONS(3206), 1, anon_sym_PLUS, + ACTIONS(3548), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160519] = 9, - ACTIONS(3170), 1, - anon_sym_and, - ACTIONS(3172), 1, - anon_sym_or, - ACTIONS(3174), 1, + [158890] = 6, + ACTIONS(2333), 1, + anon_sym_not, + ACTIONS(2349), 1, + anon_sym_is, + STATE(1605), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2347), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2325), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [158915] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3176), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3600), 1, - anon_sym_COLON, + ACTIONS(3550), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160550] = 9, - ACTIONS(3124), 1, + [158946] = 9, + ACTIONS(3222), 1, anon_sym_as, - ACTIONS(3126), 1, + ACTIONS(3224), 1, anon_sym_if, - ACTIONS(3134), 1, + ACTIONS(3226), 1, anon_sym_and, - ACTIONS(3136), 1, + ACTIONS(3228), 1, anon_sym_or, - ACTIONS(3138), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(3602), 1, - anon_sym_RBRACK, + ACTIONS(3552), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1473), 2, + STATE(1479), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160581] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, + [158977] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3318), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3324), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3326), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3604), 1, - sym__newline, + ACTIONS(3084), 1, + anon_sym_PLUS, + ACTIONS(3554), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160612] = 9, - ACTIONS(3098), 1, + [159008] = 6, + ACTIONS(2179), 1, + anon_sym_not, + ACTIONS(2183), 1, + anon_sym_is, + STATE(2156), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2177), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [159033] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3606), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3608), 1, - anon_sym_RBRACE, + ACTIONS(3302), 1, + anon_sym_else, + ACTIONS(3374), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160643] = 9, - ACTIONS(3098), 1, + [159064] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3610), 1, + ACTIONS(3556), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160674] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, - anon_sym_as, - ACTIONS(3318), 1, - anon_sym_if, - ACTIONS(3324), 1, + [159095] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3326), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3328), 1, - sym__newline, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(3558), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160705] = 9, - ACTIONS(3098), 1, + [159126] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3612), 1, + ACTIONS(3560), 1, + anon_sym_if, + ACTIONS(3562), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160736] = 9, - ACTIONS(3098), 1, + [159157] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3614), 1, - anon_sym_RBRACE, + ACTIONS(3564), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160767] = 9, - ACTIONS(3098), 1, + [159188] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3616), 1, + ACTIONS(3566), 1, anon_sym_if, - ACTIONS(3618), 1, + ACTIONS(3568), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160798] = 9, - ACTIONS(3242), 1, - anon_sym_as, - ACTIONS(3244), 1, - anon_sym_if, - ACTIONS(3250), 1, + [159219] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3058), 1, + anon_sym_as, + ACTIONS(3060), 1, + anon_sym_if, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3620), 1, - anon_sym_RPAREN, + ACTIONS(3570), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160829] = 9, - ACTIONS(3098), 1, + [159250] = 9, + ACTIONS(3194), 1, + anon_sym_as, + ACTIONS(3196), 1, + anon_sym_if, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3204), 1, anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3286), 1, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3622), 1, - anon_sym_if, - ACTIONS(3624), 1, - anon_sym_RBRACE, + ACTIONS(3572), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160860] = 6, - ACTIONS(2427), 1, + [159281] = 6, + ACTIONS(3500), 1, anon_sym_not, - ACTIONS(2431), 1, + ACTIONS(3502), 1, anon_sym_is, - STATE(1700), 1, + STATE(2170), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2429), 2, + ACTIONS(2297), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2425), 5, + ACTIONS(3498), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [160885] = 9, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, - anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3626), 1, - anon_sym_RBRACE, + [159306] = 6, + ACTIONS(2333), 1, + anon_sym_not, + ACTIONS(2349), 1, + anon_sym_is, + STATE(2169), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1211), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [160916] = 9, - ACTIONS(3242), 1, + ACTIONS(2347), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2325), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [159331] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3628), 1, - anon_sym_RPAREN, + ACTIONS(3574), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160947] = 9, - ACTIONS(3098), 1, + [159362] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, - anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3630), 1, + ACTIONS(3576), 1, + anon_sym_if, + ACTIONS(3578), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [160978] = 9, - ACTIONS(3098), 1, - anon_sym_and, - ACTIONS(3100), 1, - anon_sym_or, - ACTIONS(3108), 1, + [159393] = 9, + ACTIONS(3194), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3196), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + ACTIONS(3206), 1, anon_sym_PLUS, - ACTIONS(3632), 1, - anon_sym_RBRACE, + ACTIONS(3580), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(788), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1648), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161009] = 9, - ACTIONS(3170), 1, + [159424] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3172), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3174), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3176), 1, - anon_sym_if, - ACTIONS(3422), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3634), 1, - anon_sym_else, + ACTIONS(3582), 1, + anon_sym_if, + ACTIONS(3584), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161040] = 6, - ACTIONS(2032), 1, - anon_sym_not, - ACTIONS(2050), 1, - anon_sym_is, - STATE(2157), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2048), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2024), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [161065] = 9, - ACTIONS(3242), 1, + [159455] = 9, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3244), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3250), 1, + ACTIONS(3080), 1, anon_sym_and, - ACTIONS(3252), 1, + ACTIONS(3082), 1, anon_sym_or, - ACTIONS(3254), 1, + ACTIONS(3084), 1, anon_sym_PLUS, - ACTIONS(3636), 1, - anon_sym_RPAREN, + ACTIONS(3586), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(778), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1674), 2, + STATE(1447), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161096] = 9, - ACTIONS(3098), 1, + [159486] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3124), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3126), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3374), 1, anon_sym_PLUS, - ACTIONS(3638), 1, - anon_sym_RBRACE, + ACTIONS(3588), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161127] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3316), 1, - anon_sym_as, - ACTIONS(3318), 1, - anon_sym_if, - ACTIONS(3324), 1, + [159517] = 9, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3326), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3398), 1, - sym__newline, + ACTIONS(3124), 1, + anon_sym_as, + ACTIONS(3126), 1, + anon_sym_if, + ACTIONS(3374), 1, + anon_sym_PLUS, + ACTIONS(3590), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1506), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161158] = 9, - ACTIONS(3098), 1, + [159548] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3110), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3286), 1, + ACTIONS(3266), 1, anon_sym_PLUS, - ACTIONS(3640), 1, + ACTIONS(3592), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161189] = 9, - ACTIONS(3098), 1, + [159579] = 9, + ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3100), 1, + ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3108), 1, + ACTIONS(3058), 1, anon_sym_as, - ACTIONS(3286), 1, - anon_sym_PLUS, - ACTIONS(3642), 1, + ACTIONS(3060), 1, anon_sym_if, - ACTIONS(3644), 1, + ACTIONS(3266), 1, + anon_sym_PLUS, + ACTIONS(3594), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 2, + ACTIONS(1627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1211), 2, + STATE(1185), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161220] = 8, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3646), 1, - sym_identifier, - ACTIONS(3648), 1, - sym_integer, - ACTIONS(3650), 1, - sym_float, - STATE(2994), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2999), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [161248] = 8, - ACTIONS(3652), 1, + [159610] = 8, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3654), 1, + ACTIONS(3598), 1, anon_sym_if, - ACTIONS(3656), 1, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3658), 1, + ACTIONS(3602), 1, anon_sym_or, - ACTIONS(3660), 1, + ACTIONS(3604), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, @@ -155699,75 +151913,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161276] = 8, - ACTIONS(3652), 1, - anon_sym_as, - ACTIONS(3654), 1, - anon_sym_if, - ACTIONS(3656), 1, + [159638] = 7, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3658), 1, - anon_sym_or, - ACTIONS(3662), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [161304] = 8, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3646), 1, - sym_identifier, - ACTIONS(3648), 1, - sym_integer, - ACTIONS(3650), 1, - sym_float, - STATE(3098), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2999), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [161332] = 4, - ACTIONS(3662), 1, + ACTIONS(3604), 1, anon_sym_PLUS, + ACTIONS(3606), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, + ACTIONS(557), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1197), 2, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [161352] = 8, - ACTIONS(3652), 1, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [159664] = 8, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3654), 1, + ACTIONS(3598), 1, anon_sym_if, - ACTIONS(3656), 1, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3662), 1, + ACTIONS(3604), 1, anon_sym_PLUS, - ACTIONS(3664), 1, + ACTIONS(3606), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, @@ -155775,19 +151952,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161380] = 8, - ACTIONS(3652), 1, + [159692] = 8, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3654), 1, + ACTIONS(3598), 1, anon_sym_if, - ACTIONS(3656), 1, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3662), 1, + ACTIONS(3604), 1, anon_sym_PLUS, - ACTIONS(3666), 1, + ACTIONS(3608), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, @@ -155795,19 +151972,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161408] = 8, - ACTIONS(3652), 1, + [159720] = 8, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3654), 1, + ACTIONS(3598), 1, anon_sym_if, - ACTIONS(3656), 1, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3662), 1, + ACTIONS(3604), 1, anon_sym_PLUS, - ACTIONS(3668), 1, + ACTIONS(3610), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, @@ -155815,71 +151992,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161436] = 8, - ACTIONS(993), 1, - sym_string_start, - ACTIONS(1505), 1, + [159748] = 8, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(3670), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(3612), 1, sym_identifier, - ACTIONS(3672), 1, + ACTIONS(3614), 1, sym_integer, - ACTIONS(3674), 1, + ACTIONS(3616), 1, sym_float, - STATE(2780), 1, + STATE(3092), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2840), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [161464] = 4, - ACTIONS(3662), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1439), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [161484] = 4, - ACTIONS(3678), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2548), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3676), 6, - anon_sym_LBRACK, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - [161504] = 8, - ACTIONS(3652), 1, + [159776] = 8, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3654), 1, + ACTIONS(3598), 1, anon_sym_if, - ACTIONS(3656), 1, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3662), 1, + ACTIONS(3604), 1, anon_sym_PLUS, - ACTIONS(3681), 1, + ACTIONS(3618), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, @@ -155887,178 +152032,147 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161532] = 8, + [159804] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(3646), 1, + ACTIONS(3612), 1, sym_identifier, - ACTIONS(3648), 1, + ACTIONS(3614), 1, sym_integer, - ACTIONS(3650), 1, + ACTIONS(3616), 1, sym_float, - STATE(2963), 1, + STATE(2961), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2999), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [161560] = 8, - ACTIONS(3652), 1, - anon_sym_as, - ACTIONS(3654), 1, - anon_sym_if, - ACTIONS(3656), 1, - anon_sym_and, - ACTIONS(3662), 1, - anon_sym_PLUS, - ACTIONS(3683), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [161588] = 8, + [159832] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(3646), 1, + ACTIONS(3612), 1, sym_identifier, - ACTIONS(3648), 1, + ACTIONS(3614), 1, sym_integer, - ACTIONS(3650), 1, + ACTIONS(3616), 1, sym_float, - STATE(3084), 1, + STATE(3094), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2999), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [161616] = 8, - ACTIONS(3652), 1, + [159860] = 8, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3654), 1, + ACTIONS(3598), 1, anon_sym_if, - ACTIONS(3656), 1, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3658), 1, - anon_sym_or, - ACTIONS(3685), 1, + ACTIONS(3604), 1, anon_sym_PLUS, + ACTIONS(3620), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161644] = 8, - ACTIONS(3652), 1, - anon_sym_as, - ACTIONS(3654), 1, - anon_sym_if, - ACTIONS(3656), 1, - anon_sym_and, - ACTIONS(3662), 1, - anon_sym_PLUS, - ACTIONS(3687), 1, - anon_sym_or, + [159888] = 4, + ACTIONS(3624), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [161672] = 8, + STATE(2487), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3622), 6, + anon_sym_LBRACK, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + [159908] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(3646), 1, + ACTIONS(3612), 1, sym_identifier, - ACTIONS(3648), 1, + ACTIONS(3614), 1, sym_integer, - ACTIONS(3650), 1, + ACTIONS(3616), 1, sym_float, - STATE(2997), 1, + STATE(3105), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2999), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [161700] = 8, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(3646), 1, - sym_identifier, - ACTIONS(3648), 1, - sym_integer, - ACTIONS(3650), 1, - sym_float, - STATE(3068), 1, - sym_test, + [159936] = 4, + ACTIONS(3604), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2999), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [161728] = 7, - ACTIONS(3656), 1, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1074), 6, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3658), 1, anon_sym_or, - ACTIONS(3662), 1, + [159956] = 4, + ACTIONS(3604), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(916), 6, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1503), 2, anon_sym_as, anon_sym_if, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [161754] = 8, - ACTIONS(3652), 1, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [159976] = 8, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3654), 1, + ACTIONS(3598), 1, anon_sym_if, - ACTIONS(3656), 1, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3662), 1, + ACTIONS(3604), 1, anon_sym_PLUS, - ACTIONS(3689), 1, + ACTIONS(3627), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, @@ -156066,170 +152180,210 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161782] = 4, - ACTIONS(3662), 1, + [160004] = 4, + ACTIONS(3604), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1445), 6, + ACTIONS(1070), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [161802] = 8, - ACTIONS(3652), 1, + [160024] = 8, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(3612), 1, + sym_identifier, + ACTIONS(3614), 1, + sym_integer, + ACTIONS(3616), 1, + sym_float, + STATE(2967), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3064), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [160052] = 8, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3654), 1, + ACTIONS(3598), 1, anon_sym_if, - ACTIONS(3656), 1, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3658), 1, - anon_sym_or, - ACTIONS(3662), 1, + ACTIONS(3604), 1, anon_sym_PLUS, + ACTIONS(3629), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161830] = 4, - STATE(2053), 1, + [160080] = 8, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(3612), 1, + sym_identifier, + ACTIONS(3614), 1, + sym_integer, + ACTIONS(3616), 1, + sym_float, + STATE(2905), 1, + sym_test, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3064), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [160108] = 7, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(3631), 1, + anon_sym_LPAREN, + STATE(1802), 1, + sym_dict_expr, + STATE(2192), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2804), 2, + ACTIONS(3044), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1469), 6, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(1026), 3, + sym__newline, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, anon_sym_PIPE, - [161850] = 8, - ACTIONS(3652), 1, - anon_sym_as, - ACTIONS(3654), 1, - anon_sym_if, - ACTIONS(3656), 1, - anon_sym_and, - ACTIONS(3662), 1, - anon_sym_PLUS, - ACTIONS(3691), 1, - anon_sym_or, + [160134] = 8, + ACTIONS(1148), 1, + sym_string_start, + ACTIONS(1585), 1, + anon_sym_LPAREN, + ACTIONS(3633), 1, + sym_identifier, + ACTIONS(3635), 1, + sym_integer, + ACTIONS(3637), 1, + sym_float, + STATE(2760), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1181), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [161878] = 8, - ACTIONS(3652), 1, + STATE(2781), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [160162] = 8, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3654), 1, + ACTIONS(3598), 1, anon_sym_if, - ACTIONS(3656), 1, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3662), 1, - anon_sym_PLUS, - ACTIONS(3693), 1, + ACTIONS(3606), 1, anon_sym_or, + ACTIONS(3639), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [161906] = 8, + [160190] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(3646), 1, + ACTIONS(3612), 1, sym_identifier, - ACTIONS(3648), 1, + ACTIONS(3614), 1, sym_integer, - ACTIONS(3650), 1, + ACTIONS(3616), 1, sym_float, - STATE(3073), 1, + STATE(2965), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2999), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [161934] = 8, + [160218] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, sym_string_start, - ACTIONS(3646), 1, + ACTIONS(3612), 1, sym_identifier, - ACTIONS(3648), 1, + ACTIONS(3614), 1, sym_integer, - ACTIONS(3650), 1, + ACTIONS(3616), 1, sym_float, - STATE(3106), 1, + STATE(3090), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2999), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [161962] = 7, - ACTIONS(1881), 1, - anon_sym_LBRACE, - ACTIONS(3695), 1, - anon_sym_LPAREN, - STATE(1954), 1, - sym_dict_expr, - STATE(2244), 1, + [160246] = 4, + STATE(2000), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3090), 2, + ACTIONS(2758), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1469), 3, - sym__newline, + ACTIONS(1026), 6, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_PIPE, - [161988] = 8, - ACTIONS(3652), 1, + [160266] = 8, + ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3654), 1, + ACTIONS(3598), 1, anon_sym_if, - ACTIONS(3656), 1, + ACTIONS(3600), 1, anon_sym_and, - ACTIONS(3662), 1, + ACTIONS(3604), 1, anon_sym_PLUS, - ACTIONS(3697), 1, + ACTIONS(3641), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, @@ -156237,3912 +152391,4023 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(557), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1181), 2, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [162016] = 4, - ACTIONS(3662), 1, + [160294] = 8, + ACTIONS(3596), 1, + anon_sym_as, + ACTIONS(3598), 1, + anon_sym_if, + ACTIONS(3600), 1, + anon_sym_and, + ACTIONS(3604), 1, anon_sym_PLUS, + ACTIONS(3643), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1181), 2, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1465), 6, + [160322] = 8, + ACTIONS(3596), 1, + anon_sym_as, + ACTIONS(3598), 1, + anon_sym_if, + ACTIONS(3600), 1, + anon_sym_and, + ACTIONS(3606), 1, + anon_sym_or, + ACTIONS(3645), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(557), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [160350] = 8, + ACTIONS(3596), 1, anon_sym_as, + ACTIONS(3598), 1, anon_sym_if, + ACTIONS(3600), 1, + anon_sym_and, + ACTIONS(3604), 1, + anon_sym_PLUS, + ACTIONS(3647), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(557), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [160378] = 8, + ACTIONS(3596), 1, + anon_sym_as, + ACTIONS(3598), 1, + anon_sym_if, + ACTIONS(3600), 1, anon_sym_and, + ACTIONS(3604), 1, + anon_sym_PLUS, + ACTIONS(3606), 1, anon_sym_or, - [162036] = 6, - ACTIONS(3703), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(557), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1139), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [160406] = 6, + ACTIONS(3653), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2523), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162059] = 6, - ACTIONS(3705), 1, + [160429] = 6, + ACTIONS(3655), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2581), 2, + STATE(2511), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162082] = 6, - ACTIONS(3707), 1, + [160452] = 6, + ACTIONS(3657), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2526), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162105] = 6, - ACTIONS(3709), 1, + [160475] = 6, + ACTIONS(3659), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2578), 2, + STATE(2521), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162128] = 6, - ACTIONS(3717), 1, + [160498] = 6, + ACTIONS(3661), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3711), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3714), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2523), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162151] = 6, - ACTIONS(3719), 1, + [160521] = 6, + ACTIONS(3663), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2523), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162174] = 6, - ACTIONS(3721), 1, + [160544] = 6, + ACTIONS(3665), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2576), 2, + STATE(2523), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162197] = 6, - ACTIONS(3723), 1, + [160567] = 6, + ACTIONS(3667), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2519), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162220] = 6, - ACTIONS(3725), 1, + [160590] = 5, + ACTIONS(543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3669), 1, + sym_identifier, + STATE(3141), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(533), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [160611] = 5, + ACTIONS(513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3671), 1, + sym_identifier, + STATE(3043), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(533), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [160632] = 6, + ACTIONS(3673), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2586), 2, + STATE(2523), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162243] = 6, - ACTIONS(3727), 1, + [160655] = 6, + ACTIONS(3675), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2517), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162266] = 6, - ACTIONS(3729), 1, + [160678] = 6, + ACTIONS(3677), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2574), 2, + STATE(2523), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162289] = 6, - ACTIONS(3731), 1, + [160701] = 6, + ACTIONS(3679), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2571), 2, + STATE(2507), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162312] = 6, - ACTIONS(3733), 1, + [160724] = 6, + ACTIONS(3681), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2523), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162335] = 5, - ACTIONS(513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3735), 1, - sym_identifier, - STATE(3149), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(533), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [162356] = 5, - ACTIONS(543), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3737), 1, - sym_identifier, - STATE(3210), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(533), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [162377] = 6, - ACTIONS(3739), 1, + [160747] = 6, + ACTIONS(3683), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2523), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162400] = 6, - ACTIONS(3741), 1, + [160770] = 6, + ACTIONS(3691), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3685), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3688), 2, sym__not_escape_sequence, sym__string_content, - STATE(2584), 2, + STATE(2523), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162423] = 6, - ACTIONS(3743), 1, + [160793] = 6, + ACTIONS(3693), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2522), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162446] = 6, - ACTIONS(3745), 1, + [160816] = 6, + ACTIONS(3695), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2573), 2, + STATE(2513), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162469] = 6, - ACTIONS(3747), 1, + [160839] = 6, + ACTIONS(3697), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2569), 2, + STATE(2523), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162492] = 6, - ACTIONS(3749), 1, + [160862] = 6, + ACTIONS(3699), 1, sym_string_end, - STATE(2603), 1, + STATE(2549), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3649), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3701), 2, + ACTIONS(3651), 2, sym__not_escape_sequence, sym__string_content, - STATE(2587), 2, + STATE(2512), 2, sym_string_content, aux_sym_raw_string_repeat1, - [162515] = 4, - STATE(2244), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3090), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1469), 4, - sym__newline, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - [162533] = 4, - ACTIONS(3751), 1, - anon_sym_DOT_DOT_DOT, - STATE(3217), 1, - sym_basic_type, + [160885] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [162551] = 5, - ACTIONS(3755), 1, + ACTIONS(3701), 7, + anon_sym_LBRACK, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_AT, + [160899] = 5, + ACTIONS(3703), 1, sym_identifier, - STATE(2751), 1, + STATE(2798), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3757), 2, + ACTIONS(3705), 2, anon_sym_DASH_GT, anon_sym_LBRACE, - STATE(2715), 3, + STATE(2637), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [162571] = 2, + [160919] = 5, + ACTIONS(3703), 1, + sym_identifier, + STATE(2798), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3759), 7, - anon_sym_LBRACK, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_AT, - [162585] = 4, - ACTIONS(3761), 1, + ACTIONS(3707), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + STATE(2637), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [160939] = 4, + ACTIONS(3709), 1, anon_sym_DOT_DOT_DOT, - STATE(3177), 1, + STATE(3148), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 5, + ACTIONS(3711), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [162603] = 8, - ACTIONS(3763), 1, + [160957] = 4, + STATE(2192), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3044), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1026), 4, + sym__newline, + anon_sym_as, + anon_sym_EQ, + anon_sym_PIPE, + [160975] = 8, + ACTIONS(3713), 1, sym_identifier, - ACTIONS(3765), 1, + ACTIONS(3715), 1, anon_sym_DOT, - STATE(2844), 1, - aux_sym_import_prefix_repeat1, - STATE(2889), 1, + STATE(2739), 1, sym_import_prefix, - STATE(2953), 1, + STATE(2741), 1, + aux_sym_import_prefix_repeat1, + STATE(2870), 1, sym_dotted_name, - STATE(2969), 1, + STATE(3058), 1, sym_aliased_import, - STATE(2970), 1, + STATE(3059), 1, sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162629] = 5, - ACTIONS(3755), 1, + [161001] = 4, + ACTIONS(3717), 1, + anon_sym_DOT_DOT_DOT, + STATE(2994), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3711), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [161019] = 5, + ACTIONS(3703), 1, sym_identifier, - STATE(2751), 1, + STATE(2638), 1, sym_parameter, + STATE(2888), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3767), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - STATE(2715), 3, + STATE(2637), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [162649] = 3, - STATE(2604), 1, - aux_sym_union_type_repeat1, + [161038] = 4, + STATE(2577), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1338), 5, + ACTIONS(3719), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1026), 3, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_PIPE, - [162664] = 7, - ACTIONS(3769), 1, + [161055] = 7, + ACTIONS(3721), 1, anon_sym_COMMA, - ACTIONS(3771), 1, + ACTIONS(3723), 1, anon_sym_RBRACE, - ACTIONS(3773), 1, + ACTIONS(3725), 1, anon_sym_for, - STATE(2613), 1, + STATE(2566), 1, sym_for_in_clause, - STATE(2762), 1, + STATE(2804), 1, aux_sym_dictionary_repeat1, - STATE(3141), 1, + STATE(3001), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162687] = 4, - ACTIONS(180), 1, + [161078] = 4, + ACTIONS(1639), 1, anon_sym_LBRACK, - ACTIONS(3775), 1, + ACTIONS(3727), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1901), 4, + STATE(1077), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [162704] = 5, - ACTIONS(3755), 1, + [161095] = 7, + ACTIONS(3725), 1, + anon_sym_for, + ACTIONS(3729), 1, + anon_sym_COMMA, + ACTIONS(3731), 1, + anon_sym_RBRACE, + STATE(2566), 1, + sym_for_in_clause, + STATE(2765), 1, + aux_sym_dictionary_repeat1, + STATE(2933), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161118] = 3, + STATE(2900), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3711), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [161133] = 7, + ACTIONS(3725), 1, + anon_sym_for, + ACTIONS(3733), 1, + anon_sym_COMMA, + ACTIONS(3735), 1, + anon_sym_RBRACE, + STATE(2566), 1, + sym_for_in_clause, + STATE(2719), 1, + aux_sym_dictionary_repeat1, + STATE(2926), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161156] = 5, + ACTIONS(3703), 1, sym_identifier, - STATE(2720), 1, + STATE(2638), 1, sym_parameter, - STATE(2926), 1, + STATE(2856), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2715), 3, + STATE(2637), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [162723] = 5, - ACTIONS(3773), 1, - anon_sym_for, - ACTIONS(3777), 1, - anon_sym_if, - ACTIONS(3779), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2628), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [162742] = 7, - ACTIONS(3773), 1, + [161175] = 7, + ACTIONS(3725), 1, anon_sym_for, - ACTIONS(3781), 1, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3783), 1, + ACTIONS(3739), 1, anon_sym_RBRACE, - STATE(2613), 1, + STATE(2566), 1, sym_for_in_clause, - STATE(2838), 1, + STATE(2769), 1, aux_sym_dictionary_repeat1, - STATE(3039), 1, + STATE(3047), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162765] = 5, - ACTIONS(3789), 1, - sym_string_end, - STATE(2616), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3785), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3787), 2, - sym__not_escape_sequence, - sym__string_content, - [162784] = 4, - ACTIONS(3791), 1, - anon_sym_PIPE, - STATE(2604), 1, + [161198] = 3, + STATE(2550), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 4, + ACTIONS(1261), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, - [162801] = 4, - ACTIONS(1529), 1, + anon_sym_PIPE, + [161213] = 4, + ACTIONS(1623), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3741), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1413), 4, + STATE(1353), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [162818] = 5, - ACTIONS(1469), 1, - anon_sym_LF, - STATE(2634), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + [161230] = 4, + ACTIONS(1547), 1, + anon_sym_LBRACK, + ACTIONS(3743), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1471), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3796), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [162837] = 5, - ACTIONS(3800), 1, - anon_sym_COLON, - ACTIONS(3802), 1, - anon_sym_LBRACK, - ACTIONS(3804), 1, - anon_sym_EQ, + STATE(674), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [161247] = 3, + STATE(2544), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3798), 3, + ACTIONS(1325), 5, anon_sym_COMMA, + anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, - [162856] = 7, - ACTIONS(3773), 1, - anon_sym_for, - ACTIONS(3806), 1, - anon_sym_COMMA, - ACTIONS(3808), 1, - anon_sym_RBRACE, - STATE(2613), 1, - sym_for_in_clause, - STATE(2766), 1, - aux_sym_dictionary_repeat1, - STATE(3235), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162879] = 5, - ACTIONS(3755), 1, + anon_sym_PIPE, + [161262] = 5, + ACTIONS(3703), 1, sym_identifier, - STATE(2720), 1, + STATE(2638), 1, sym_parameter, - STATE(2932), 1, + STATE(2886), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2715), 3, + STATE(2637), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [162898] = 7, - ACTIONS(3773), 1, - anon_sym_for, - ACTIONS(3810), 1, - anon_sym_COMMA, - ACTIONS(3812), 1, - anon_sym_RBRACE, - STATE(2613), 1, - sym_for_in_clause, - STATE(2796), 1, - aux_sym_dictionary_repeat1, - STATE(2996), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, + [161281] = 5, + ACTIONS(3749), 1, + sym_string_end, + STATE(2555), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [162921] = 4, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_LBRACE, + ACTIONS(3745), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(3747), 2, + sym__not_escape_sequence, + sym__string_content, + [161300] = 4, + ACTIONS(3751), 1, + anon_sym_PIPE, + STATE(2550), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1274), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [162938] = 4, - ACTIONS(1483), 1, + ACTIONS(1190), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [161317] = 4, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(3816), 1, + ACTIONS(3754), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(971), 4, + STATE(1224), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [162955] = 5, - ACTIONS(3773), 1, + [161334] = 5, + ACTIONS(3725), 1, anon_sym_for, - ACTIONS(3777), 1, + ACTIONS(3756), 1, anon_sym_if, - ACTIONS(3818), 1, + ACTIONS(3758), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2601), 3, + STATE(2561), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [162974] = 3, - STATE(3015), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3753), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [162989] = 7, - ACTIONS(3773), 1, + [161353] = 7, + ACTIONS(3725), 1, anon_sym_for, - ACTIONS(3820), 1, + ACTIONS(3760), 1, anon_sym_COMMA, - ACTIONS(3822), 1, + ACTIONS(3762), 1, anon_sym_RBRACE, - STATE(2613), 1, + STATE(2566), 1, sym_for_in_clause, - STATE(2729), 1, + STATE(2829), 1, aux_sym_dictionary_repeat1, - STATE(3158), 1, + STATE(2912), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163012] = 5, - ACTIONS(3830), 1, + [161376] = 5, + ACTIONS(3764), 1, + anon_sym_if, + ACTIONS(3767), 1, + anon_sym_RBRACK, + ACTIONS(3769), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2554), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [161395] = 5, + ACTIONS(3778), 1, sym_string_end, - STATE(2616), 1, + STATE(2555), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3824), 2, + ACTIONS(3772), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3827), 2, + ACTIONS(3775), 2, sym__not_escape_sequence, sym__string_content, - [163031] = 5, - ACTIONS(3832), 1, - anon_sym_if, - ACTIONS(3835), 1, - anon_sym_RBRACK, - ACTIONS(3837), 1, - anon_sym_for, + [161414] = 5, + ACTIONS(3703), 1, + sym_identifier, + STATE(2638), 1, + sym_parameter, + STATE(2889), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2617), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [163050] = 3, - STATE(3218), 1, + STATE(2637), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [161433] = 5, + ACTIONS(1022), 1, + anon_sym_LF, + STATE(1586), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1020), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3780), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [161452] = 3, + STATE(3149), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 5, + ACTIONS(3711), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [163065] = 5, - ACTIONS(3132), 1, + [161467] = 5, + ACTIONS(3703), 1, + sym_identifier, + STATE(2638), 1, + sym_parameter, + STATE(2882), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2637), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [161486] = 7, + ACTIONS(3725), 1, anon_sym_for, - ACTIONS(3818), 1, - anon_sym_RBRACK, - ACTIONS(3840), 1, + ACTIONS(3782), 1, + anon_sym_COMMA, + ACTIONS(3784), 1, + anon_sym_RBRACE, + STATE(2566), 1, + sym_for_in_clause, + STATE(2817), 1, + aux_sym_dictionary_repeat1, + STATE(2996), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161509] = 5, + ACTIONS(3767), 1, + anon_sym_RBRACE, + ACTIONS(3786), 1, anon_sym_if, + ACTIONS(3789), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2621), 3, + STATE(2561), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [163084] = 4, - ACTIONS(772), 1, + [161528] = 4, + ACTIONS(180), 1, anon_sym_LBRACK, - ACTIONS(3842), 1, + ACTIONS(3792), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1993), 4, + STATE(1902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [163101] = 5, - ACTIONS(3132), 1, + [161545] = 5, + ACTIONS(3796), 1, + anon_sym_COLON, + ACTIONS(3798), 1, + anon_sym_LBRACK, + ACTIONS(3800), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3794), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [161564] = 5, + ACTIONS(3703), 1, + sym_identifier, + STATE(2638), 1, + sym_parameter, + STATE(2881), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2637), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [161583] = 5, + ACTIONS(3078), 1, anon_sym_for, - ACTIONS(3779), 1, - anon_sym_RBRACK, - ACTIONS(3840), 1, + ACTIONS(3802), 1, anon_sym_if, + ACTIONS(3804), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2617), 3, + STATE(2584), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [163120] = 3, - STATE(3214), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3753), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [163135] = 7, - ACTIONS(3773), 1, + [161602] = 5, + ACTIONS(3725), 1, anon_sym_for, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(3846), 1, + ACTIONS(3756), 1, + anon_sym_if, + ACTIONS(3804), 1, anon_sym_RBRACE, - STATE(2613), 1, - sym_for_in_clause, - STATE(2824), 1, - aux_sym_dictionary_repeat1, - STATE(3048), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163158] = 7, - ACTIONS(3773), 1, - anon_sym_for, - ACTIONS(3848), 1, - anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RBRACE, - STATE(2613), 1, + STATE(2552), 3, sym_for_in_clause, - STATE(2781), 1, - aux_sym_dictionary_repeat1, - STATE(3236), 1, - sym__comprehension_clauses, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [161621] = 5, + ACTIONS(3703), 1, + sym_identifier, + STATE(2638), 1, + sym_parameter, + STATE(2867), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163181] = 4, - STATE(2645), 1, + STATE(2637), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [161640] = 4, + STATE(2000), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3852), 2, + ACTIONS(2758), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1469), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [163198] = 3, - STATE(2597), 1, + ACTIONS(1026), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [161657] = 3, + STATE(2544), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 5, + ACTIONS(1084), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [163213] = 4, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(3854), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(973), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [163230] = 5, - ACTIONS(3835), 1, - anon_sym_RBRACE, - ACTIONS(3856), 1, - anon_sym_if, - ACTIONS(3859), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2628), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [163249] = 5, - ACTIONS(3755), 1, + [161672] = 5, + ACTIONS(3703), 1, sym_identifier, - STATE(2720), 1, + STATE(2638), 1, sym_parameter, - STATE(2943), 1, + STATE(2879), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2715), 3, + STATE(2637), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [163268] = 5, - ACTIONS(3864), 1, - anon_sym_EQ, - ACTIONS(3866), 1, - anon_sym_PIPE, - STATE(2597), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3862), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, + [161691] = 4, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(3806), 1, anon_sym_LBRACE, - [163287] = 3, - STATE(2597), 1, - aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 5, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [163302] = 5, - ACTIONS(3755), 1, + STATE(773), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [161708] = 5, + ACTIONS(3703), 1, sym_identifier, - STATE(2720), 1, + STATE(2638), 1, sym_parameter, - STATE(2942), 1, + STATE(2877), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2715), 3, + STATE(2637), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [163321] = 3, - STATE(2597), 1, + [161727] = 7, + ACTIONS(3725), 1, + anon_sym_for, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3810), 1, + anon_sym_RBRACE, + STATE(2566), 1, + sym_for_in_clause, + STATE(2671), 1, + aux_sym_dictionary_repeat1, + STATE(3168), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161750] = 3, + STATE(2544), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1312), 5, + ACTIONS(1190), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [163336] = 5, - ACTIONS(1477), 1, - anon_sym_LF, - STATE(1583), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1479), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3796), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [163355] = 4, - ACTIONS(1545), 1, + [161765] = 4, + ACTIONS(1587), 1, anon_sym_LBRACK, - ACTIONS(3868), 1, + ACTIONS(3812), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1101), 4, + STATE(1886), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [163372] = 5, - ACTIONS(3755), 1, - sym_identifier, - STATE(2720), 1, - sym_parameter, - STATE(2935), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2715), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [163391] = 5, - ACTIONS(3755), 1, - sym_identifier, - STATE(2720), 1, - sym_parameter, - STATE(2940), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2715), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [163410] = 3, - STATE(3189), 1, + [161782] = 3, + STATE(2955), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 5, + ACTIONS(3711), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [163425] = 5, - ACTIONS(3755), 1, - sym_identifier, - STATE(2720), 1, - sym_parameter, - STATE(2895), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2715), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [163444] = 4, - STATE(2053), 1, + [161797] = 4, + STATE(1656), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2804), 2, + ACTIONS(3719), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1469), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [163461] = 3, - STATE(2597), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1274), 5, + ACTIONS(1022), 3, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_PIPE, - [163476] = 5, - ACTIONS(3755), 1, - sym_identifier, - STATE(2720), 1, - sym_parameter, - STATE(2938), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2715), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [163495] = 4, - ACTIONS(1507), 1, + [161814] = 4, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(3870), 1, + ACTIONS(3814), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1903), 4, + STATE(1780), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [163512] = 5, - ACTIONS(3755), 1, - sym_identifier, - STATE(2720), 1, - sym_parameter, - STATE(2939), 1, - sym__parameters, + [161831] = 5, + ACTIONS(3818), 1, + anon_sym_EQ, + ACTIONS(3820), 1, + anon_sym_PIPE, + STATE(2544), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2715), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [163531] = 4, - STATE(1822), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3816), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [161850] = 3, + STATE(3192), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3852), 2, + ACTIONS(3711), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [161865] = 5, + ACTIONS(1026), 1, + anon_sym_LF, + STATE(2557), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1024), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3780), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1477), 3, + [161884] = 3, + STATE(2544), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1344), 5, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_PIPE, - [163548] = 7, - ACTIONS(3773), 1, + [161899] = 7, + ACTIONS(3725), 1, anon_sym_for, - ACTIONS(3872), 1, + ACTIONS(3822), 1, anon_sym_COMMA, - ACTIONS(3874), 1, + ACTIONS(3824), 1, anon_sym_RBRACE, - STATE(2613), 1, + STATE(2566), 1, sym_for_in_clause, - STATE(2764), 1, + STATE(2758), 1, aux_sym_dictionary_repeat1, - STATE(3164), 1, + STATE(3198), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163571] = 7, - ACTIONS(3773), 1, + [161922] = 5, + ACTIONS(3078), 1, + anon_sym_for, + ACTIONS(3758), 1, + anon_sym_RBRACK, + ACTIONS(3802), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2554), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [161941] = 7, + ACTIONS(3725), 1, anon_sym_for, - ACTIONS(3876), 1, + ACTIONS(3826), 1, anon_sym_COMMA, - ACTIONS(3878), 1, + ACTIONS(3828), 1, anon_sym_RBRACE, - STATE(2613), 1, + STATE(2566), 1, sym_for_in_clause, - STATE(2773), 1, + STATE(2724), 1, aux_sym_dictionary_repeat1, - STATE(3114), 1, + STATE(3113), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163594] = 4, - ACTIONS(511), 1, + [161964] = 4, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(3880), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1691), 4, + STATE(1956), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [163611] = 3, - STATE(2668), 1, + [161981] = 3, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1312), 4, + ACTIONS(1325), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [163625] = 6, - ACTIONS(3882), 1, - anon_sym_COMMA, - ACTIONS(3884), 1, - anon_sym_RPAREN, - ACTIONS(3886), 1, - anon_sym_PIPE, - STATE(2692), 1, - aux_sym_union_type_repeat1, - STATE(2742), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163645] = 6, - ACTIONS(3882), 1, + [161995] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, - anon_sym_PIPE, - ACTIONS(3888), 1, + ACTIONS(3834), 1, anon_sym_RPAREN, - STATE(2692), 1, + ACTIONS(3836), 1, + anon_sym_PIPE, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2768), 1, + STATE(2679), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163665] = 6, - ACTIONS(3882), 1, + [162015] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3890), 1, + ACTIONS(3838), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2753), 1, + STATE(2802), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163685] = 6, - ACTIONS(3882), 1, + [162035] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3892), 1, + ACTIONS(3840), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2777), 1, + STATE(2757), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163705] = 3, - ACTIONS(3894), 1, - anon_sym_DASH_GT, + [162055] = 3, + STATE(2595), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 4, + ACTIONS(1190), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [163719] = 4, - ACTIONS(3896), 1, - sym_identifier, - STATE(3137), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2715), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [163735] = 4, - STATE(2674), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1469), 2, - anon_sym_RBRACE, + [162069] = 6, + ACTIONS(3832), 1, + anon_sym_COMMA, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3898), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [163751] = 3, - STATE(2668), 1, + ACTIONS(3842), 1, + anon_sym_RPAREN, + STATE(2639), 1, aux_sym_union_type_repeat1, + STATE(2785), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [163765] = 6, - ACTIONS(3882), 1, + [162089] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3900), 1, + ACTIONS(3844), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2847), 1, + STATE(2675), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163785] = 3, - ACTIONS(3902), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1274), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, + [162109] = 4, + ACTIONS(3846), 1, anon_sym_PIPE, - [163799] = 3, - STATE(2668), 1, + STATE(2594), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 4, + ACTIONS(1190), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, - anon_sym_PIPE, - [163813] = 4, - ACTIONS(3904), 1, - anon_sym_PIPE, - STATE(2661), 1, + [162125] = 3, + STATE(2594), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 3, + ACTIONS(1261), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, - [163829] = 6, - ACTIONS(3882), 1, + anon_sym_PIPE, + [162139] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(3849), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2888), 1, + STATE(2668), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163849] = 6, - ACTIONS(3882), 1, - anon_sym_COMMA, - ACTIONS(3886), 1, - anon_sym_PIPE, - ACTIONS(3909), 1, - anon_sym_RPAREN, - STATE(2692), 1, - aux_sym_union_type_repeat1, - STATE(2846), 1, - aux_sym_function_type_repeat1, + [162159] = 4, + STATE(1262), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163869] = 6, - ACTIONS(3882), 1, + ACTIONS(1022), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + ACTIONS(3851), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [162175] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3911), 1, + ACTIONS(3853), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2886), 1, + STATE(2682), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163889] = 6, - ACTIONS(3882), 1, - anon_sym_COMMA, - ACTIONS(3886), 1, - anon_sym_PIPE, - ACTIONS(3913), 1, - anon_sym_RPAREN, - STATE(2692), 1, - aux_sym_union_type_repeat1, - STATE(2816), 1, - aux_sym_function_type_repeat1, + [162195] = 3, + ACTIONS(3855), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163909] = 6, - ACTIONS(3882), 1, + ACTIONS(1313), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [162209] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3915), 1, + ACTIONS(3857), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2856), 1, + STATE(2828), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163929] = 6, - ACTIONS(3882), 1, + [162229] = 4, + STATE(2597), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1026), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + ACTIONS(3851), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [162245] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3917), 1, + ACTIONS(3859), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2739), 1, + STATE(2752), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163949] = 3, - STATE(2661), 1, - aux_sym_union_type_repeat1, + [162265] = 4, + ACTIONS(3861), 1, + sym_identifier, + STATE(3009), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1338), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [163963] = 3, - STATE(2668), 1, - aux_sym_union_type_repeat1, + STATE(2637), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [162281] = 3, + ACTIONS(3863), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 4, + ACTIONS(1084), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [163977] = 3, - ACTIONS(3919), 1, - anon_sym_DASH_GT, + [162295] = 3, + STATE(2595), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 4, + ACTIONS(1344), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [163991] = 6, - ACTIONS(3882), 1, + [162309] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3921), 1, + ACTIONS(3865), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2745), 1, + STATE(2768), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164011] = 6, - ACTIONS(3882), 1, + [162329] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3923), 1, + ACTIONS(3867), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2789), 1, + STATE(2731), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164031] = 6, - ACTIONS(3882), 1, + [162349] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3925), 1, + ACTIONS(3869), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2740), 1, + STATE(2744), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164051] = 4, - STATE(1322), 1, - aux_sym_dotted_name_repeat1, + [162369] = 4, + ACTIONS(3861), 1, + sym_identifier, + STATE(3091), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1477), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - ACTIONS(3898), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [164067] = 4, - ACTIONS(3896), 1, + STATE(2637), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [162385] = 4, + ACTIONS(3703), 1, sym_identifier, - STATE(3047), 1, + STATE(2798), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2715), 3, + STATE(2637), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [164083] = 4, - STATE(1443), 1, + [162401] = 6, + ACTIONS(3832), 1, + anon_sym_COMMA, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3871), 1, + anon_sym_RPAREN, + STATE(2639), 1, + aux_sym_union_type_repeat1, + STATE(2738), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162421] = 3, + ACTIONS(3873), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1231), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [162435] = 3, + STATE(2595), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [162449] = 4, + STATE(2615), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1477), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(3927), 2, + ACTIONS(3875), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [164099] = 4, - STATE(2676), 1, + [162465] = 4, + STATE(1431), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 2, + ACTIONS(1022), 2, anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(3927), 2, + ACTIONS(3875), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [164115] = 6, - ACTIONS(3882), 1, + [162481] = 6, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3886), 1, + ACTIONS(3836), 1, anon_sym_PIPE, - ACTIONS(3929), 1, + ACTIONS(3877), 1, anon_sym_RPAREN, - STATE(2692), 1, + STATE(2639), 1, aux_sym_union_type_repeat1, - STATE(2826), 1, + STATE(2763), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164135] = 4, - ACTIONS(3755), 1, - sym_identifier, - STATE(2751), 1, - sym_parameter, + [162501] = 6, + ACTIONS(3832), 1, + anon_sym_COMMA, + ACTIONS(3836), 1, + anon_sym_PIPE, + ACTIONS(3879), 1, + anon_sym_RPAREN, + STATE(2639), 1, + aux_sym_union_type_repeat1, + STATE(2709), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2715), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [164151] = 5, - ACTIONS(3862), 1, - anon_sym_COLON, - ACTIONS(3931), 1, - anon_sym_EQ, - ACTIONS(3933), 1, - anon_sym_PIPE, - STATE(2668), 1, + [162521] = 3, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164168] = 5, - ACTIONS(3935), 1, + ACTIONS(1344), 3, + sym__newline, anon_sym_EQ, - ACTIONS(3937), 1, anon_sym_PIPE, - ACTIONS(3939), 1, - sym__newline, - STATE(2702), 1, + [162534] = 3, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164185] = 3, - ACTIONS(3941), 1, - anon_sym_DASH_GT, + ACTIONS(1084), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [162547] = 5, + ACTIONS(3026), 1, + anon_sym_RBRACE, + ACTIONS(3881), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_LF, + STATE(2642), 1, + aux_sym_config_entries_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [162564] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 3, + ACTIONS(3885), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [164198] = 5, - ACTIONS(3937), 1, - anon_sym_PIPE, - ACTIONS(3943), 1, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [162575] = 5, + ACTIONS(3887), 1, anon_sym_EQ, - ACTIONS(3945), 1, + ACTIONS(3889), 1, + anon_sym_PIPE, + ACTIONS(3891), 1, sym__newline, - STATE(2702), 1, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164215] = 4, - ACTIONS(3947), 1, - anon_sym_PIPE, - STATE(2684), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [162592] = 5, + ACTIONS(3893), 1, + anon_sym_COMMA, + ACTIONS(3895), 1, + anon_sym_RBRACE, + ACTIONS(3897), 1, + anon_sym_LF, + STATE(2719), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 2, + [162609] = 4, + ACTIONS(3899), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [164230] = 3, - STATE(2692), 1, - aux_sym_union_type_repeat1, + STATE(2636), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [164243] = 4, - ACTIONS(3950), 1, + ACTIONS(3707), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [162624] = 5, + ACTIONS(3889), 1, anon_sym_PIPE, - STATE(2686), 1, + ACTIONS(3901), 1, + anon_sym_EQ, + ACTIONS(3903), 1, + sym__newline, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 2, - sym__newline, - anon_sym_EQ, - [164258] = 5, - ACTIONS(3953), 1, + [162641] = 5, + ACTIONS(3897), 1, + anon_sym_LF, + ACTIONS(3905), 1, anon_sym_COMMA, - ACTIONS(3955), 1, + ACTIONS(3907), 1, anon_sym_RBRACE, - ACTIONS(3957), 1, - anon_sym_LF, - STATE(2764), 1, + STATE(2765), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164275] = 3, - ACTIONS(3959), 1, - anon_sym_DASH_GT, + [162658] = 5, + ACTIONS(3889), 1, + anon_sym_PIPE, + ACTIONS(3909), 1, + anon_sym_EQ, + ACTIONS(3911), 1, + sym__newline, + STATE(2650), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + [162675] = 5, + ACTIONS(3889), 1, anon_sym_PIPE, - [164288] = 3, - STATE(2692), 1, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(3915), 1, + sym__newline, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [164301] = 5, - ACTIONS(3957), 1, + [162692] = 5, + ACTIONS(3897), 1, anon_sym_LF, - ACTIONS(3961), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3963), 1, + ACTIONS(3919), 1, anon_sym_RBRACE, - STATE(2838), 1, + STATE(2817), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164318] = 4, - ACTIONS(3886), 1, + [162709] = 5, + ACTIONS(3889), 1, anon_sym_PIPE, - STATE(2692), 1, + ACTIONS(3921), 1, + anon_sym_EQ, + ACTIONS(3923), 1, + sym__newline, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3965), 2, + [162726] = 5, + ACTIONS(3925), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [164333] = 3, - STATE(2684), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + ACTIONS(3927), 1, + anon_sym_RBRACE, + ACTIONS(3929), 1, + anon_sym_LF, + STATE(2620), 1, + aux_sym_config_entries_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1338), 3, + [162743] = 5, + ACTIONS(3897), 1, + anon_sym_LF, + ACTIONS(3931), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [164346] = 3, - ACTIONS(3967), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3933), 1, + anon_sym_RBRACE, + STATE(2804), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [164359] = 5, - ACTIONS(3957), 1, + [162760] = 5, + ACTIONS(3897), 1, anon_sym_LF, - ACTIONS(3969), 1, + ACTIONS(3935), 1, anon_sym_COMMA, - ACTIONS(3971), 1, + ACTIONS(3937), 1, anon_sym_RBRACE, - STATE(2796), 1, + STATE(2829), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164376] = 5, - ACTIONS(3957), 1, + [162777] = 5, + ACTIONS(3897), 1, anon_sym_LF, - ACTIONS(3973), 1, + ACTIONS(3939), 1, anon_sym_COMMA, - ACTIONS(3975), 1, + ACTIONS(3941), 1, anon_sym_RBRACE, - STATE(2766), 1, + STATE(2769), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164393] = 5, - ACTIONS(3937), 1, - anon_sym_PIPE, - ACTIONS(3977), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - sym__newline, - STATE(2702), 1, - aux_sym_union_type_repeat1, + [162794] = 3, + ACTIONS(3943), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164410] = 5, - ACTIONS(3937), 1, + ACTIONS(1313), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_EQ, - ACTIONS(3983), 1, - sym__newline, - STATE(2702), 1, - aux_sym_union_type_repeat1, + [162807] = 4, + ACTIONS(3945), 1, + anon_sym_COMMA, + STATE(2636), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164427] = 3, - STATE(2692), 1, + ACTIONS(3948), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [162822] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3794), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [162833] = 4, + ACTIONS(3950), 1, + anon_sym_COMMA, + STATE(2624), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3952), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [162848] = 3, + STATE(2643), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1312), 3, + ACTIONS(1261), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [164440] = 3, - ACTIONS(3985), 1, + [162861] = 3, + ACTIONS(3954), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 3, - sym__newline, - anon_sym_EQ, + ACTIONS(1231), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - [164453] = 5, - ACTIONS(3957), 1, - anon_sym_LF, - ACTIONS(3987), 1, + [162874] = 3, + STATE(2639), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1190), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [162887] = 5, + ACTIONS(3956), 1, anon_sym_COMMA, - ACTIONS(3989), 1, + ACTIONS(3959), 1, anon_sym_RBRACE, - STATE(2781), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3961), 1, + anon_sym_LF, + STATE(2642), 1, + aux_sym_config_entries_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164470] = 4, - ACTIONS(1469), 1, - sym__newline, - STATE(2244), 1, - aux_sym_dotted_name_repeat1, + [162904] = 4, + ACTIONS(3964), 1, + anon_sym_PIPE, + STATE(2643), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3090), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [164485] = 3, - STATE(2686), 1, - aux_sym_union_type_repeat1, + ACTIONS(1190), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162919] = 3, + ACTIONS(3967), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1338), 3, + ACTIONS(1084), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [164498] = 5, - ACTIONS(3957), 1, + [162932] = 5, + ACTIONS(3897), 1, anon_sym_LF, - ACTIONS(3991), 1, + ACTIONS(3969), 1, anon_sym_COMMA, - ACTIONS(3993), 1, + ACTIONS(3971), 1, anon_sym_RBRACE, - STATE(2824), 1, + STATE(2724), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164515] = 5, - ACTIONS(3937), 1, + [162949] = 4, + ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3995), 1, + STATE(2646), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1190), 2, + sym__newline, anon_sym_EQ, - ACTIONS(3997), 1, + [162964] = 4, + ACTIONS(1026), 1, sym__newline, - STATE(2702), 1, + STATE(2192), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3044), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [162979] = 3, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164532] = 5, - ACTIONS(3957), 1, + ACTIONS(1325), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [162992] = 5, + ACTIONS(3897), 1, anon_sym_LF, - ACTIONS(3999), 1, + ACTIONS(3976), 1, anon_sym_COMMA, - ACTIONS(4001), 1, + ACTIONS(3978), 1, anon_sym_RBRACE, - STATE(2729), 1, + STATE(2671), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164549] = 3, - ACTIONS(4003), 1, - anon_sym_DASH_GT, + [163009] = 3, + STATE(2646), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 3, + ACTIONS(1261), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [164562] = 3, - STATE(2702), 1, - aux_sym_union_type_repeat1, + [163022] = 3, + ACTIONS(3980), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 3, + ACTIONS(1313), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [164575] = 3, - STATE(2702), 1, + [163035] = 5, + ACTIONS(3889), 1, + anon_sym_PIPE, + ACTIONS(3982), 1, + anon_sym_EQ, + ACTIONS(3984), 1, + sym__newline, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [164588] = 3, - ACTIONS(4005), 1, + [163052] = 3, + ACTIONS(3986), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 3, + ACTIONS(1231), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [164601] = 3, - STATE(2692), 1, + [163065] = 4, + ACTIONS(3836), 1, + anon_sym_PIPE, + STATE(2639), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 3, + ACTIONS(3988), 2, anon_sym_COMMA, anon_sym_RPAREN, + [163080] = 5, + ACTIONS(3889), 1, anon_sym_PIPE, - [164614] = 4, - ACTIONS(4007), 1, - anon_sym_COMMA, - STATE(2717), 1, - aux_sym__parameters_repeat1, + ACTIONS(3990), 1, + anon_sym_EQ, + ACTIONS(3992), 1, + sym__newline, + STATE(2650), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3757), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [164629] = 2, + [163097] = 3, + STATE(2639), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4009), 4, + ACTIONS(1084), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [164640] = 3, - STATE(2702), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + [163110] = 3, + STATE(2639), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1312), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [164653] = 5, - ACTIONS(3086), 1, - anon_sym_RBRACE, - ACTIONS(4011), 1, + ACTIONS(1344), 3, anon_sym_COMMA, - ACTIONS(4013), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + [163123] = 5, + ACTIONS(3897), 1, anon_sym_LF, - STATE(2723), 1, - aux_sym_config_entries_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [164670] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3798), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [164681] = 5, - ACTIONS(4015), 1, + ACTIONS(3994), 1, anon_sym_COMMA, - ACTIONS(4017), 1, + ACTIONS(3996), 1, anon_sym_RBRACE, - ACTIONS(4019), 1, - anon_sym_LF, - STATE(2714), 1, - aux_sym_config_entries_repeat1, + STATE(2758), 1, + aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [164698] = 4, - ACTIONS(4021), 1, - anon_sym_COMMA, - STATE(2717), 1, - aux_sym__parameters_repeat1, + [163140] = 3, + STATE(2650), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4024), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [164713] = 5, - ACTIONS(3937), 1, + ACTIONS(1190), 3, + sym__newline, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(4026), 1, + [163153] = 5, + ACTIONS(3816), 1, + anon_sym_COLON, + ACTIONS(3998), 1, anon_sym_EQ, - ACTIONS(4028), 1, - sym__newline, - STATE(2702), 1, + ACTIONS(4000), 1, + anon_sym_PIPE, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164730] = 3, - STATE(2702), 1, + [163170] = 5, + ACTIONS(3889), 1, + anon_sym_PIPE, + ACTIONS(4002), 1, + anon_sym_EQ, + ACTIONS(4004), 1, + sym__newline, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [164743] = 4, - ACTIONS(4030), 1, - anon_sym_COMMA, - STATE(2711), 1, - aux_sym__parameters_repeat1, + [163187] = 3, + ACTIONS(4006), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4032), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [164758] = 5, - ACTIONS(3937), 1, + ACTIONS(1084), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4034), 1, - anon_sym_EQ, - ACTIONS(4036), 1, - sym__newline, - STATE(2702), 1, + [163200] = 3, + STATE(2639), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164775] = 5, - ACTIONS(3937), 1, + ACTIONS(1325), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4038), 1, + [163213] = 5, + ACTIONS(3889), 1, + anon_sym_PIPE, + ACTIONS(4008), 1, anon_sym_EQ, - ACTIONS(4040), 1, + ACTIONS(4010), 1, sym__newline, - STATE(2702), 1, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164792] = 5, - ACTIONS(4042), 1, - anon_sym_COMMA, - ACTIONS(4045), 1, + [163230] = 4, + ACTIONS(2862), 1, anon_sym_RBRACE, - ACTIONS(4047), 1, - anon_sym_LF, - STATE(2723), 1, - aux_sym_config_entries_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [164809] = 5, - ACTIONS(3937), 1, + ACTIONS(4012), 1, anon_sym_PIPE, - ACTIONS(4050), 1, - anon_sym_EQ, - ACTIONS(4052), 1, - sym__newline, - STATE(2702), 1, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164826] = 5, - ACTIONS(3957), 1, - anon_sym_LF, - ACTIONS(4054), 1, - anon_sym_COMMA, - ACTIONS(4056), 1, - anon_sym_RBRACE, - STATE(2762), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + [163244] = 3, + STATE(2727), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164843] = 5, - ACTIONS(3957), 1, - anon_sym_LF, - ACTIONS(4058), 1, + ACTIONS(1261), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [163256] = 4, + ACTIONS(3733), 1, anon_sym_COMMA, - ACTIONS(4060), 1, + ACTIONS(3735), 1, anon_sym_RBRACE, - STATE(2773), 1, + STATE(2719), 1, aux_sym_dictionary_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164860] = 4, - ACTIONS(1121), 1, - anon_sym_RPAREN, - ACTIONS(4062), 1, + [163270] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - STATE(2791), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4014), 1, + anon_sym_RPAREN, + STATE(2699), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164874] = 4, - ACTIONS(3806), 1, + [163284] = 4, + ACTIONS(3826), 1, anon_sym_COMMA, - ACTIONS(3808), 1, + ACTIONS(3828), 1, anon_sym_RBRACE, - STATE(2766), 1, + STATE(2724), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164888] = 4, - ACTIONS(698), 1, + [163298] = 4, + ACTIONS(2936), 1, anon_sym_RBRACE, - ACTIONS(4064), 1, - anon_sym_COMMA, - STATE(2772), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4012), 1, + anon_sym_PIPE, + STATE(2814), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164902] = 4, - ACTIONS(3872), 1, - anon_sym_COMMA, - ACTIONS(3874), 1, + [163312] = 4, + ACTIONS(708), 1, anon_sym_RBRACE, - STATE(2764), 1, + ACTIONS(4016), 1, + anon_sym_COMMA, + STATE(2770), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164916] = 4, - ACTIONS(4066), 1, - anon_sym_RBRACK, - ACTIONS(4068), 1, - anon_sym_PIPE, - STATE(2891), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164930] = 4, - ACTIONS(4070), 1, + [163326] = 4, + ACTIONS(3729), 1, anon_sym_COMMA, - ACTIONS(4072), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + ACTIONS(3731), 1, + anon_sym_RBRACE, + STATE(2765), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164944] = 3, - STATE(2744), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [163340] = 3, + ACTIONS(4020), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1338), 2, + ACTIONS(4018), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163352] = 4, + ACTIONS(2838), 1, anon_sym_RBRACE, + ACTIONS(4012), 1, anon_sym_PIPE, - [164956] = 4, - ACTIONS(4074), 1, - anon_sym_COMMA, - ACTIONS(4076), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + STATE(2814), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164970] = 4, - ACTIONS(3312), 1, + [163366] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(3314), 1, + ACTIONS(4022), 1, anon_sym_RPAREN, - STATE(2727), 1, - aux_sym_argument_list_repeat1, + STATE(2699), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164984] = 4, - ACTIONS(1187), 1, - anon_sym_RPAREN, - ACTIONS(4078), 1, + [163380] = 4, + ACTIONS(3278), 1, anon_sym_COMMA, - STATE(2791), 1, + ACTIONS(3280), 1, + anon_sym_RPAREN, + STATE(2686), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164998] = 4, - ACTIONS(3200), 1, + [163394] = 4, + ACTIONS(3150), 1, anon_sym_COMMA, - ACTIONS(3202), 1, + ACTIONS(3152), 1, anon_sym_RBRACK, - STATE(2747), 1, + STATE(2689), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165012] = 4, - ACTIONS(2902), 1, - anon_sym_RBRACE, - ACTIONS(4080), 1, - anon_sym_PIPE, - STATE(2733), 1, + [163408] = 3, + STATE(2666), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165026] = 4, - ACTIONS(3882), 1, - anon_sym_COMMA, - ACTIONS(4082), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165040] = 4, - ACTIONS(3882), 1, + ACTIONS(1325), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [163420] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(4084), 1, + ACTIONS(4024), 1, anon_sym_RPAREN, - STATE(2797), 1, + STATE(2699), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165054] = 4, - ACTIONS(2906), 1, + [163434] = 4, + ACTIONS(2816), 1, anon_sym_RBRACE, - ACTIONS(4080), 1, + ACTIONS(4012), 1, anon_sym_PIPE, - STATE(2733), 1, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165068] = 4, - ACTIONS(3882), 1, - anon_sym_COMMA, - ACTIONS(4086), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165082] = 4, - ACTIONS(1003), 1, + [163448] = 4, + ACTIONS(1386), 1, anon_sym_RPAREN, - ACTIONS(4088), 1, + ACTIONS(4026), 1, anon_sym_COMMA, - STATE(2791), 1, + STATE(2753), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165096] = 4, - ACTIONS(1263), 1, - anon_sym_RBRACE, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(2744), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165110] = 4, - ACTIONS(3882), 1, + [163462] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(4093), 1, + ACTIONS(4028), 1, anon_sym_RPAREN, - STATE(2797), 1, + STATE(2699), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165124] = 4, - ACTIONS(4095), 1, + [163476] = 4, + ACTIONS(4030), 1, anon_sym_COMMA, - ACTIONS(4097), 1, + ACTIONS(4032), 1, anon_sym_RBRACK, - STATE(2748), 1, + STATE(2740), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165138] = 4, - ACTIONS(4099), 1, + [163490] = 4, + ACTIONS(4034), 1, anon_sym_COMMA, - ACTIONS(4101), 1, + ACTIONS(4036), 1, anon_sym_RBRACK, - STATE(2748), 1, + STATE(2740), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165152] = 4, - ACTIONS(4103), 1, - anon_sym_COMMA, - ACTIONS(4106), 1, + [163504] = 3, + STATE(2666), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1344), 2, anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + anon_sym_PIPE, + [163516] = 4, + ACTIONS(1038), 1, + anon_sym_RPAREN, + ACTIONS(4038), 1, + anon_sym_COMMA, + STATE(2753), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165166] = 4, - ACTIONS(4080), 1, + [163530] = 4, + ACTIONS(4012), 1, anon_sym_PIPE, - ACTIONS(4108), 1, + ACTIONS(4040), 1, anon_sym_RBRACE, - STATE(2733), 1, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165180] = 3, - ACTIONS(4110), 1, - anon_sym_DASH_GT, + [163544] = 4, + ACTIONS(4042), 1, + anon_sym_COMMA, + ACTIONS(4044), 1, + anon_sym_RBRACK, + STATE(2740), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [165192] = 2, + [163558] = 4, + ACTIONS(4046), 1, + anon_sym_COMMA, + ACTIONS(4048), 1, + anon_sym_RBRACK, + STATE(2740), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4024), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [165202] = 4, - ACTIONS(2890), 1, - anon_sym_RBRACE, - ACTIONS(4080), 1, + [163572] = 4, + ACTIONS(4012), 1, anon_sym_PIPE, - STATE(2733), 1, + ACTIONS(4050), 1, + anon_sym_RBRACE, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165216] = 4, - ACTIONS(3882), 1, + [163586] = 4, + ACTIONS(3760), 1, anon_sym_COMMA, - ACTIONS(4112), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_function_type_repeat1, + ACTIONS(3762), 1, + anon_sym_RBRACE, + STATE(2829), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165230] = 2, + [163600] = 4, + ACTIONS(4012), 1, + anon_sym_PIPE, + ACTIONS(4052), 1, + anon_sym_RBRACE, + STATE(2814), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [165240] = 4, - ACTIONS(3194), 1, - anon_sym_COMMA, - ACTIONS(3196), 1, - anon_sym_RBRACK, - STATE(2732), 1, - aux_sym_subscript_repeat1, + [163614] = 3, + ACTIONS(4054), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165254] = 4, - ACTIONS(3332), 1, - anon_sym_COMMA, - ACTIONS(3334), 1, - anon_sym_RPAREN, - STATE(2736), 1, - aux_sym_argument_list_repeat1, + ACTIONS(1084), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [163626] = 3, + STATE(2666), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165268] = 4, - ACTIONS(4068), 1, + ACTIONS(1084), 2, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(4116), 1, + [163638] = 4, + ACTIONS(4056), 1, + anon_sym_COMMA, + ACTIONS(4058), 1, anon_sym_RBRACK, - STATE(2891), 1, - aux_sym_union_type_repeat1, + STATE(2740), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165282] = 3, - ACTIONS(3957), 1, - anon_sym_LF, - ACTIONS(5), 2, + [163652] = 4, + ACTIONS(4060), 1, + anon_sym_COMMA, + ACTIONS(4062), 1, + anon_sym_RBRACK, + STATE(2740), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4118), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [165294] = 4, - ACTIONS(4068), 1, + [163666] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4120), 1, - anon_sym_RBRACK, - STATE(2891), 1, + ACTIONS(4064), 1, + anon_sym_LBRACE, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165308] = 4, - ACTIONS(3232), 1, + [163680] = 4, + ACTIONS(3132), 1, anon_sym_COMMA, - ACTIONS(3234), 1, + ACTIONS(3136), 1, anon_sym_RBRACK, - STATE(2887), 1, + STATE(2797), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165322] = 4, - ACTIONS(4122), 1, - sym_identifier, - ACTIONS(4124), 1, - anon_sym_DOT, - STATE(2761), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165336] = 4, - ACTIONS(690), 1, - anon_sym_RBRACE, - ACTIONS(4127), 1, + [163694] = 4, + ACTIONS(3988), 1, + anon_sym_RPAREN, + ACTIONS(4066), 1, anon_sym_COMMA, - STATE(2772), 1, - aux_sym_dictionary_repeat1, + STATE(2699), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165350] = 4, - ACTIONS(3266), 1, - anon_sym_COMMA, - ACTIONS(3268), 1, + [163708] = 4, + ACTIONS(1473), 1, anon_sym_RPAREN, - STATE(2743), 1, + ACTIONS(4069), 1, + anon_sym_COMMA, + STATE(2753), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165364] = 4, - ACTIONS(696), 1, + [163722] = 4, + ACTIONS(4012), 1, + anon_sym_PIPE, + ACTIONS(4071), 1, anon_sym_RBRACE, - ACTIONS(4129), 1, - anon_sym_COMMA, - STATE(2772), 1, - aux_sym_dictionary_repeat1, + STATE(2814), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165378] = 4, - ACTIONS(4131), 1, - anon_sym_COMMA, - ACTIONS(4133), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_quant_target_repeat1, + [163736] = 4, + ACTIONS(4000), 1, + anon_sym_PIPE, + ACTIONS(4073), 1, + anon_sym_LBRACE, + STATE(2595), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165392] = 4, - ACTIONS(710), 1, - anon_sym_RBRACE, - ACTIONS(4135), 1, - anon_sym_COMMA, - STATE(2772), 1, - aux_sym_dictionary_repeat1, + [163750] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165406] = 4, - ACTIONS(1193), 1, - anon_sym_RPAREN, - ACTIONS(4137), 1, - anon_sym_COMMA, - STATE(2791), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4075), 3, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_for, + [163760] = 4, + ACTIONS(4077), 1, + anon_sym_RBRACK, + ACTIONS(4079), 1, + anon_sym_PIPE, + STATE(2666), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165420] = 4, - ACTIONS(3882), 1, + [163774] = 4, + ACTIONS(4081), 1, anon_sym_COMMA, - ACTIONS(4139), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_function_type_repeat1, + ACTIONS(4083), 1, + anon_sym_RBRACK, + STATE(2740), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165434] = 4, - ACTIONS(3342), 1, - anon_sym_COMMA, - ACTIONS(3344), 1, - anon_sym_RPAREN, - STATE(2875), 1, - aux_sym_argument_list_repeat1, + [163788] = 4, + ACTIONS(2848), 1, + anon_sym_RBRACE, + ACTIONS(4012), 1, + anon_sym_PIPE, + STATE(2814), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165448] = 4, - ACTIONS(3933), 1, + [163802] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4141), 1, - anon_sym_COLON, - STATE(2668), 1, + ACTIONS(4085), 1, + anon_sym_LBRACE, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165462] = 4, - ACTIONS(3933), 1, + [163816] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_EQ, - STATE(2668), 1, + ACTIONS(4087), 1, + anon_sym_COLON, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165476] = 4, - ACTIONS(4145), 1, + [163830] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(4148), 1, - anon_sym_RBRACE, - STATE(2772), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4089), 1, + anon_sym_RPAREN, + STATE(2699), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165490] = 4, - ACTIONS(732), 1, - anon_sym_RBRACE, - ACTIONS(4150), 1, + [163844] = 4, + ACTIONS(4091), 1, anon_sym_COMMA, - STATE(2772), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4093), 1, + anon_sym_RBRACK, + STATE(2740), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165504] = 3, - ACTIONS(4152), 1, - anon_sym_LF, - ACTIONS(5), 2, + [163858] = 4, + ACTIONS(4000), 1, + anon_sym_PIPE, + ACTIONS(4095), 1, + anon_sym_LBRACE, + STATE(2595), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4045), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [165516] = 4, - ACTIONS(3820), 1, + [163872] = 4, + ACTIONS(3737), 1, anon_sym_COMMA, - ACTIONS(3822), 1, + ACTIONS(3739), 1, anon_sym_RBRACE, - STATE(2729), 1, + STATE(2769), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165530] = 4, - ACTIONS(4068), 1, + [163886] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4154), 1, - anon_sym_RBRACK, - STATE(2891), 1, + ACTIONS(4097), 1, + anon_sym_LBRACE, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165544] = 4, - ACTIONS(3882), 1, + [163900] = 4, + ACTIONS(3146), 1, anon_sym_COMMA, - ACTIONS(4156), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_function_type_repeat1, + ACTIONS(3148), 1, + anon_sym_RBRACK, + STATE(2695), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165558] = 4, - ACTIONS(4080), 1, + [163914] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4158), 1, - anon_sym_RBRACE, - STATE(2733), 1, + ACTIONS(4099), 1, + anon_sym_COLON, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165572] = 2, + [163928] = 4, + ACTIONS(4000), 1, + anon_sym_PIPE, + ACTIONS(4101), 1, + anon_sym_LBRACE, + STATE(2595), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3178), 3, + [163942] = 4, + ACTIONS(4000), 1, + anon_sym_PIPE, + ACTIONS(4103), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [165582] = 3, - ACTIONS(4162), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4160), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [165594] = 4, - ACTIONS(684), 1, - anon_sym_RBRACE, - ACTIONS(4164), 1, - anon_sym_COMMA, - STATE(2772), 1, - aux_sym_dictionary_repeat1, + STATE(2595), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165608] = 4, - ACTIONS(4166), 1, - anon_sym_COMMA, - ACTIONS(4168), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + [163956] = 4, + ACTIONS(4000), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_LBRACE, + STATE(2595), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165622] = 2, + [163970] = 4, + ACTIONS(744), 1, + anon_sym_RBRACE, + ACTIONS(4107), 1, + anon_sym_COMMA, + STATE(2770), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4170), 3, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [165632] = 4, - ACTIONS(2980), 1, - anon_sym_RBRACE, - ACTIONS(4080), 1, + [163984] = 4, + ACTIONS(4079), 1, anon_sym_PIPE, - STATE(2733), 1, + ACTIONS(4109), 1, + anon_sym_RBRACK, + STATE(2666), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165646] = 4, - ACTIONS(3298), 1, + [163998] = 4, + ACTIONS(3198), 1, anon_sym_COMMA, - ACTIONS(3300), 1, + ACTIONS(3200), 1, anon_sym_RPAREN, - STATE(2882), 1, + STATE(2700), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165660] = 4, - ACTIONS(4172), 1, + [164012] = 4, + ACTIONS(1360), 1, + anon_sym_RPAREN, + ACTIONS(4111), 1, anon_sym_COMMA, - ACTIONS(4174), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165674] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4176), 1, - anon_sym_COLON, - STATE(2668), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165688] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4178), 1, - anon_sym_LBRACE, - STATE(2668), 1, - aux_sym_union_type_repeat1, + STATE(2753), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165702] = 4, - ACTIONS(3882), 1, + [164026] = 4, + ACTIONS(3188), 1, anon_sym_COMMA, - ACTIONS(4180), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_function_type_repeat1, + ACTIONS(3190), 1, + anon_sym_RBRACK, + STATE(2684), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165716] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4182), 1, - anon_sym_LBRACE, - STATE(2668), 1, - aux_sym_union_type_repeat1, + [164040] = 4, + ACTIONS(718), 1, + anon_sym_RBRACE, + ACTIONS(4113), 1, + anon_sym_COMMA, + STATE(2770), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165730] = 4, - ACTIONS(3412), 1, - anon_sym_RPAREN, - ACTIONS(4184), 1, + [164054] = 4, + ACTIONS(3721), 1, anon_sym_COMMA, - STATE(2791), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3723), 1, + anon_sym_RBRACE, + STATE(2804), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165744] = 3, - STATE(2733), 1, + [164068] = 4, + ACTIONS(4079), 1, + anon_sym_PIPE, + ACTIONS(4115), 1, + anon_sym_RBRACK, + STATE(2666), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [165756] = 4, - ACTIONS(4080), 1, - anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_RBRACE, - STATE(2733), 1, + [164082] = 4, + ACTIONS(1190), 1, + anon_sym_RBRACK, + ACTIONS(4117), 1, + anon_sym_PIPE, + STATE(2727), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165770] = 4, - ACTIONS(4068), 1, - anon_sym_PIPE, - ACTIONS(4189), 1, - anon_sym_RBRACK, - STATE(2891), 1, + [164096] = 3, + STATE(2666), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165784] = 4, - ACTIONS(4191), 1, - anon_sym_COMMA, - ACTIONS(4194), 1, + ACTIONS(1190), 2, anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_quant_target_repeat1, + anon_sym_PIPE, + [164108] = 3, + ACTIONS(4120), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165798] = 4, - ACTIONS(726), 1, - anon_sym_RBRACE, - ACTIONS(4196), 1, - anon_sym_COMMA, - STATE(2772), 1, - aux_sym_dictionary_repeat1, + ACTIONS(1231), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [164120] = 4, + ACTIONS(4079), 1, + anon_sym_PIPE, + ACTIONS(4122), 1, + anon_sym_RBRACK, + STATE(2666), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165812] = 4, - ACTIONS(3965), 1, - anon_sym_RPAREN, - ACTIONS(4198), 1, + [164134] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - STATE(2797), 1, + ACTIONS(4124), 1, + anon_sym_RPAREN, + STATE(2699), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165826] = 4, - ACTIONS(4080), 1, + [164148] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4201), 1, - anon_sym_RBRACE, - STATE(2733), 1, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165840] = 4, - ACTIONS(3933), 1, + [164162] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4203), 1, + ACTIONS(4128), 1, anon_sym_COLON, - STATE(2668), 1, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165854] = 4, - ACTIONS(4205), 1, - anon_sym_COMMA, - ACTIONS(4207), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + [164176] = 3, + ACTIONS(4130), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165868] = 4, - ACTIONS(4080), 1, + ACTIONS(1313), 2, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(4209), 1, - anon_sym_RBRACE, - STATE(2733), 1, - aux_sym_union_type_repeat1, + [164188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165882] = 4, - ACTIONS(3848), 1, + ACTIONS(3158), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [164198] = 4, + ACTIONS(3218), 1, anon_sym_COMMA, - ACTIONS(3850), 1, - anon_sym_RBRACE, - STATE(2781), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3220), 1, + anon_sym_RPAREN, + STATE(2681), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165896] = 4, - ACTIONS(3810), 1, - anon_sym_COMMA, - ACTIONS(3812), 1, + [164212] = 4, + ACTIONS(1190), 1, anon_sym_RBRACE, - STATE(2796), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4132), 1, + anon_sym_PIPE, + STATE(2737), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165910] = 3, - STATE(2733), 1, - aux_sym_union_type_repeat1, + [164226] = 4, + ACTIONS(3832), 1, + anon_sym_COMMA, + ACTIONS(4135), 1, + anon_sym_RPAREN, + STATE(2699), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - [165922] = 3, - STATE(2891), 1, - aux_sym_union_type_repeat1, + [164240] = 4, + ACTIONS(3713), 1, + sym_identifier, + STATE(2844), 1, + sym_dotted_name, + STATE(2962), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [165934] = 4, - ACTIONS(4211), 1, + [164254] = 4, + ACTIONS(4137), 1, anon_sym_COMMA, - ACTIONS(4213), 1, + ACTIONS(4140), 1, anon_sym_RBRACK, - STATE(2748), 1, + STATE(2740), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165948] = 2, + [164268] = 4, + ACTIONS(4142), 1, + sym_identifier, + ACTIONS(4144), 1, + anon_sym_DOT, + STATE(2787), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164282] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4170), 3, + ACTIONS(4075), 3, anon_sym_if, anon_sym_RBRACE, anon_sym_for, - [165958] = 4, - ACTIONS(3308), 1, + [164292] = 4, + ACTIONS(3282), 1, anon_sym_COMMA, - ACTIONS(3310), 1, + ACTIONS(3284), 1, anon_sym_RPAREN, - STATE(2833), 1, + STATE(2773), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165972] = 4, - ACTIONS(4215), 1, + [164306] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(4217), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + ACTIONS(4146), 1, + anon_sym_RPAREN, + STATE(2699), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165986] = 4, - ACTIONS(3374), 1, - anon_sym_RBRACK, - ACTIONS(4219), 1, + [164320] = 4, + ACTIONS(3154), 1, anon_sym_COMMA, - STATE(2810), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3156), 1, + anon_sym_RBRACK, + STATE(2776), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166000] = 3, - STATE(2733), 1, + [164334] = 4, + ACTIONS(3889), 1, + anon_sym_PIPE, + ACTIONS(4148), 1, + sym__newline, + STATE(2650), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1312), 2, - anon_sym_RBRACE, + [164348] = 4, + ACTIONS(4012), 1, anon_sym_PIPE, - [166012] = 4, - ACTIONS(3204), 1, + ACTIONS(4150), 1, + anon_sym_RBRACE, + STATE(2814), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164362] = 4, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3206), 1, - anon_sym_RBRACK, - STATE(2853), 1, - aux_sym_subscript_repeat1, + ACTIONS(3810), 1, + anon_sym_RBRACE, + STATE(2671), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166026] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4222), 1, - anon_sym_LBRACE, - STATE(2668), 1, - aux_sym_union_type_repeat1, + [164376] = 4, + ACTIONS(4152), 1, + anon_sym_COMMA, + ACTIONS(4154), 1, + anon_sym_RBRACK, + STATE(2740), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166040] = 4, - ACTIONS(4068), 1, - anon_sym_PIPE, - ACTIONS(4224), 1, + [164390] = 4, + ACTIONS(4156), 1, + anon_sym_COMMA, + ACTIONS(4158), 1, anon_sym_RBRACK, - STATE(2891), 1, - aux_sym_union_type_repeat1, + STATE(2740), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166054] = 4, - ACTIONS(2934), 1, + [164404] = 4, + ACTIONS(2858), 1, anon_sym_RBRACE, - ACTIONS(4080), 1, + ACTIONS(4012), 1, anon_sym_PIPE, - STATE(2733), 1, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166068] = 4, - ACTIONS(3882), 1, + [164418] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(4226), 1, + ACTIONS(4160), 1, anon_sym_RPAREN, - STATE(2797), 1, + STATE(2699), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166082] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4228), 1, - anon_sym_COLON, - STATE(2668), 1, - aux_sym_union_type_repeat1, + [164432] = 4, + ACTIONS(3352), 1, + anon_sym_RPAREN, + ACTIONS(4162), 1, + anon_sym_COMMA, + STATE(2753), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166096] = 4, - ACTIONS(3798), 1, - anon_sym_COLON, - ACTIONS(3802), 1, - anon_sym_LBRACK, - ACTIONS(4230), 1, - anon_sym_EQ, + [164446] = 4, + ACTIONS(1370), 1, + anon_sym_RPAREN, + ACTIONS(4165), 1, + anon_sym_COMMA, + STATE(2753), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166110] = 3, - STATE(2733), 1, + [164460] = 4, + ACTIONS(4079), 1, + anon_sym_PIPE, + ACTIONS(4167), 1, + anon_sym_RBRACK, + STATE(2666), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 2, + [164474] = 4, + ACTIONS(2860), 1, anon_sym_RBRACE, + ACTIONS(4012), 1, anon_sym_PIPE, - [166122] = 4, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, + STATE(2814), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164488] = 4, + ACTIONS(3832), 1, + anon_sym_COMMA, + ACTIONS(4169), 1, anon_sym_RPAREN, - STATE(3241), 1, - sym_argument_list, + STATE(2699), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166136] = 4, - ACTIONS(3224), 1, + [164502] = 4, + ACTIONS(710), 1, + anon_sym_RBRACE, + ACTIONS(4171), 1, anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_RBRACK, - STATE(2806), 1, - aux_sym_subscript_repeat1, + STATE(2770), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166150] = 4, - ACTIONS(3246), 1, + [164516] = 4, + ACTIONS(3178), 1, anon_sym_COMMA, - ACTIONS(3248), 1, - anon_sym_RPAREN, - STATE(2767), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3180), 1, + anon_sym_RBRACK, + STATE(2749), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166164] = 3, - ACTIONS(4236), 1, + [164530] = 3, + ACTIONS(4175), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4234), 2, + ACTIONS(4173), 2, anon_sym_COMMA, anon_sym_RBRACE, - [166176] = 4, - ACTIONS(730), 1, - anon_sym_RBRACE, - ACTIONS(4238), 1, + [164542] = 4, + ACTIONS(3822), 1, anon_sym_COMMA, - STATE(2772), 1, + ACTIONS(3824), 1, + anon_sym_RBRACE, + STATE(2758), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166190] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4240), 1, - anon_sym_LBRACE, - STATE(2668), 1, - aux_sym_union_type_repeat1, + [164556] = 4, + ACTIONS(3268), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, + anon_sym_RPAREN, + STATE(2754), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166204] = 4, - ACTIONS(3882), 1, + [164570] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(4242), 1, + ACTIONS(4177), 1, anon_sym_RPAREN, - STATE(2797), 1, + STATE(2699), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166218] = 4, - ACTIONS(3769), 1, - anon_sym_COMMA, - ACTIONS(3771), 1, + [164584] = 4, + ACTIONS(2806), 1, anon_sym_RBRACE, - STATE(2762), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4012), 1, + anon_sym_PIPE, + STATE(2814), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166232] = 4, - ACTIONS(4068), 1, - anon_sym_PIPE, - ACTIONS(4244), 1, - anon_sym_RBRACK, - STATE(2891), 1, - aux_sym_union_type_repeat1, + [164598] = 4, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(4179), 1, + anon_sym_COMMA, + STATE(2770), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166246] = 4, - ACTIONS(4068), 1, + [164612] = 4, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4246), 1, + ACTIONS(4181), 1, anon_sym_RBRACK, - STATE(2891), 1, + STATE(2666), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166260] = 4, - ACTIONS(3876), 1, + [164626] = 3, + ACTIONS(4183), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3959), 2, anon_sym_COMMA, - ACTIONS(3878), 1, anon_sym_RBRACE, - STATE(2773), 1, - aux_sym_dictionary_repeat1, + [164638] = 4, + ACTIONS(3832), 1, + anon_sym_COMMA, + ACTIONS(4185), 1, + anon_sym_RPAREN, + STATE(2699), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166274] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4248), 1, - anon_sym_COLON, - STATE(2668), 1, - aux_sym_union_type_repeat1, + [164652] = 4, + ACTIONS(714), 1, + anon_sym_RBRACE, + ACTIONS(4187), 1, + anon_sym_COMMA, + STATE(2770), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166288] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4250), 1, - anon_sym_LBRACE, - STATE(2668), 1, - aux_sym_union_type_repeat1, + [164666] = 4, + ACTIONS(4189), 1, + anon_sym_COMMA, + ACTIONS(4192), 1, + anon_sym_RBRACE, + STATE(2770), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166302] = 4, - ACTIONS(930), 1, + [164680] = 4, + ACTIONS(1459), 1, anon_sym_RPAREN, - ACTIONS(4252), 1, + ACTIONS(4194), 1, anon_sym_COMMA, - STATE(2791), 1, + STATE(2753), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166316] = 4, - ACTIONS(3282), 1, + [164694] = 4, + ACTIONS(3074), 1, anon_sym_COMMA, - ACTIONS(3284), 1, + ACTIONS(3076), 1, + anon_sym_RBRACK, + STATE(2782), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164708] = 4, + ACTIONS(1469), 1, anon_sym_RPAREN, - STATE(2857), 1, + ACTIONS(4196), 1, + anon_sym_COMMA, + STATE(2753), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166330] = 4, - ACTIONS(3228), 1, + [164722] = 4, + ACTIONS(4000), 1, + anon_sym_PIPE, + ACTIONS(4198), 1, + anon_sym_COLON, + STATE(2595), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164736] = 4, + ACTIONS(4200), 1, anon_sym_COMMA, - ACTIONS(3230), 1, + ACTIONS(4202), 1, anon_sym_RBRACK, - STATE(2861), 1, + STATE(2740), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166344] = 3, - STATE(2891), 1, - aux_sym_union_type_repeat1, + [164750] = 4, + ACTIONS(4204), 1, + anon_sym_COMMA, + ACTIONS(4206), 1, + anon_sym_RBRACK, + STATE(2740), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1312), 2, - anon_sym_RBRACK, + [164764] = 4, + ACTIONS(4079), 1, anon_sym_PIPE, - [166356] = 4, - ACTIONS(3128), 1, - anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(4208), 1, anon_sym_RBRACK, - STATE(2842), 1, - aux_sym__collection_elements_repeat1, + STATE(2666), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166370] = 4, - ACTIONS(708), 1, - anon_sym_RBRACE, - ACTIONS(4254), 1, + [164778] = 4, + ACTIONS(4210), 1, anon_sym_COMMA, - STATE(2772), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4213), 1, + anon_sym_RBRACK, + STATE(2778), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166384] = 4, - ACTIONS(3933), 1, + [164792] = 4, + ACTIONS(4012), 1, anon_sym_PIPE, - ACTIONS(4256), 1, - anon_sym_COLON, - STATE(2668), 1, + ACTIONS(4215), 1, + anon_sym_RBRACE, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166398] = 3, - ACTIONS(3178), 1, + [164806] = 4, + ACTIONS(4217), 1, + anon_sym_COMMA, + ACTIONS(4219), 1, + anon_sym_RBRACK, + STATE(2778), 1, + aux_sym_quant_target_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164820] = 3, + ACTIONS(3158), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3180), 2, + ACTIONS(3160), 2, anon_sym_COMMA, anon_sym_RBRACE, - [166410] = 4, - ACTIONS(3182), 1, - anon_sym_COMMA, - ACTIONS(3186), 1, - anon_sym_RBRACK, - STATE(2877), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166424] = 4, - ACTIONS(3128), 1, + [164832] = 4, + ACTIONS(3074), 1, anon_sym_COMMA, - ACTIONS(4258), 1, + ACTIONS(4221), 1, anon_sym_RBRACK, - STATE(2810), 1, + STATE(2811), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166438] = 3, - ACTIONS(4260), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1418), 2, + [164846] = 4, + ACTIONS(3782), 1, + anon_sym_COMMA, + ACTIONS(3784), 1, anon_sym_RBRACE, - anon_sym_PIPE, - [166450] = 4, - ACTIONS(4262), 1, - sym_identifier, - ACTIONS(4264), 1, - anon_sym_DOT, - STATE(2761), 1, - aux_sym_import_prefix_repeat1, + STATE(2817), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166464] = 4, - ACTIONS(3933), 1, + [164860] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4266), 1, - anon_sym_LBRACE, - STATE(2668), 1, + ACTIONS(4223), 1, + anon_sym_COLON, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166478] = 4, - ACTIONS(3882), 1, - anon_sym_COMMA, - ACTIONS(4268), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166492] = 4, - ACTIONS(3882), 1, + [164874] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(4270), 1, + ACTIONS(4225), 1, anon_sym_RPAREN, - STATE(2797), 1, + STATE(2699), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166506] = 4, - ACTIONS(2966), 1, - anon_sym_RBRACE, - ACTIONS(4080), 1, - anon_sym_PIPE, - STATE(2733), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166520] = 4, - ACTIONS(4272), 1, + [164888] = 4, + ACTIONS(4227), 1, anon_sym_COMMA, - ACTIONS(4274), 1, + ACTIONS(4229), 1, anon_sym_RBRACK, - STATE(2748), 1, + STATE(2740), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166534] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4276), 1, - anon_sym_LBRACE, - STATE(2668), 1, - aux_sym_union_type_repeat1, + [164902] = 4, + ACTIONS(4231), 1, + sym_identifier, + ACTIONS(4233), 1, + anon_sym_DOT, + STATE(2787), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166548] = 3, - ACTIONS(4278), 1, - anon_sym_DASH_GT, + [164916] = 4, + ACTIONS(3274), 1, + anon_sym_COMMA, + ACTIONS(3276), 1, + anon_sym_RPAREN, + STATE(2771), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [166560] = 3, - ACTIONS(4280), 1, - anon_sym_DASH_GT, + [164930] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 2, - anon_sym_RBRACE, + ACTIONS(4236), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [164940] = 4, + ACTIONS(4012), 1, anon_sym_PIPE, - [166572] = 4, - ACTIONS(4282), 1, - anon_sym_COMMA, - ACTIONS(4284), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + ACTIONS(4238), 1, + anon_sym_RBRACE, + STATE(2814), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166586] = 3, - STATE(2891), 1, + [164954] = 4, + ACTIONS(4000), 1, + anon_sym_PIPE, + ACTIONS(4240), 1, + anon_sym_COLON, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1274), 2, - anon_sym_RBRACK, + [164968] = 4, + ACTIONS(4012), 1, anon_sym_PIPE, - [166598] = 4, - ACTIONS(2944), 1, + ACTIONS(4242), 1, anon_sym_RBRACE, - ACTIONS(4080), 1, - anon_sym_PIPE, - STATE(2733), 1, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166612] = 4, - ACTIONS(3882), 1, - anon_sym_COMMA, - ACTIONS(4286), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, + [164982] = 3, + ACTIONS(3897), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [166626] = 4, - ACTIONS(1123), 1, - anon_sym_RPAREN, - ACTIONS(4288), 1, + ACTIONS(4244), 2, anon_sym_COMMA, - STATE(2791), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166640] = 4, - ACTIONS(4080), 1, - anon_sym_PIPE, - ACTIONS(4290), 1, anon_sym_RBRACE, - STATE(2733), 1, - aux_sym_union_type_repeat1, + [164994] = 4, + ACTIONS(4246), 1, + anon_sym_COMMA, + ACTIONS(4248), 1, + anon_sym_RBRACK, + STATE(2740), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166654] = 4, - ACTIONS(3937), 1, - anon_sym_PIPE, - ACTIONS(4292), 1, - sym__newline, - STATE(2702), 1, - aux_sym_union_type_repeat1, + [165008] = 4, + ACTIONS(4250), 1, + anon_sym_COMMA, + ACTIONS(4252), 1, + anon_sym_RBRACK, + STATE(2740), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166668] = 4, - ACTIONS(3844), 1, + [165022] = 4, + ACTIONS(940), 1, + anon_sym_RPAREN, + ACTIONS(4254), 1, anon_sym_COMMA, - ACTIONS(3846), 1, - anon_sym_RBRACE, - STATE(2824), 1, - aux_sym_dictionary_repeat1, + STATE(2753), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166682] = 4, - ACTIONS(4294), 1, + [165036] = 4, + ACTIONS(4256), 1, anon_sym_COMMA, - ACTIONS(4296), 1, + ACTIONS(4258), 1, anon_sym_RBRACK, - STATE(2748), 1, + STATE(2740), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166696] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4298), 1, - anon_sym_COLON, - STATE(2668), 1, - aux_sym_union_type_repeat1, + [165050] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166710] = 4, - ACTIONS(4300), 1, + ACTIONS(3948), 3, anon_sym_COMMA, - ACTIONS(4302), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [165060] = 4, + ACTIONS(4000), 1, + anon_sym_PIPE, + ACTIONS(4260), 1, + anon_sym_EQ, + STATE(2595), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166724] = 4, - ACTIONS(2856), 1, + [165074] = 4, + ACTIONS(2852), 1, anon_sym_RBRACE, - ACTIONS(4080), 1, + ACTIONS(4012), 1, anon_sym_PIPE, - STATE(2733), 1, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166738] = 4, - ACTIONS(3933), 1, + [165088] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4304), 1, + ACTIONS(4262), 1, anon_sym_LBRACE, - STATE(2668), 1, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166752] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4306), 1, + [165102] = 4, + ACTIONS(3832), 1, + anon_sym_COMMA, + ACTIONS(4264), 1, + anon_sym_RPAREN, + STATE(2699), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165116] = 4, + ACTIONS(3794), 1, anon_sym_COLON, - STATE(2668), 1, - aux_sym_union_type_repeat1, + ACTIONS(3798), 1, + anon_sym_LBRACK, + ACTIONS(4266), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166766] = 4, - ACTIONS(3933), 1, - anon_sym_PIPE, - ACTIONS(4308), 1, - anon_sym_LBRACE, - STATE(2668), 1, - aux_sym_union_type_repeat1, + [165130] = 4, + ACTIONS(704), 1, + anon_sym_RBRACE, + ACTIONS(4268), 1, + anon_sym_COMMA, + STATE(2770), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166780] = 4, - ACTIONS(4068), 1, - anon_sym_PIPE, - ACTIONS(4310), 1, + [165144] = 4, + ACTIONS(3142), 1, + anon_sym_COMMA, + ACTIONS(3144), 1, anon_sym_RBRACK, - STATE(2891), 1, - aux_sym_union_type_repeat1, + STATE(2794), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166794] = 4, - ACTIONS(3781), 1, + [165158] = 4, + ACTIONS(3254), 1, anon_sym_COMMA, - ACTIONS(3783), 1, - anon_sym_RBRACE, - STATE(2838), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3256), 1, + anon_sym_RPAREN, + STATE(2796), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166808] = 4, - ACTIONS(4080), 1, + [165172] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4312), 1, - anon_sym_RBRACE, - STATE(2733), 1, + ACTIONS(4270), 1, + anon_sym_COLON, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166822] = 4, - ACTIONS(1263), 1, - anon_sym_RBRACK, - ACTIONS(4314), 1, + [165186] = 4, + ACTIONS(4012), 1, anon_sym_PIPE, - STATE(2871), 1, + ACTIONS(4272), 1, + anon_sym_RBRACE, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166836] = 3, - STATE(2891), 1, + [165200] = 4, + ACTIONS(4079), 1, + anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_RBRACK, + STATE(2666), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [166848] = 3, - ACTIONS(4317), 1, - anon_sym_DASH_GT, + [165214] = 4, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(4276), 1, + anon_sym_RPAREN, + STATE(2911), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 2, + [165228] = 4, + ACTIONS(3348), 1, anon_sym_RBRACK, + ACTIONS(4278), 1, + anon_sym_COMMA, + STATE(2811), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165242] = 4, + ACTIONS(4079), 1, anon_sym_PIPE, - [166860] = 4, - ACTIONS(4080), 1, - anon_sym_PIPE, - ACTIONS(4319), 1, - anon_sym_RBRACE, - STATE(2733), 1, + ACTIONS(4281), 1, + anon_sym_RBRACK, + STATE(2666), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166874] = 4, - ACTIONS(1195), 1, - anon_sym_RPAREN, - ACTIONS(4321), 1, + [165256] = 4, + ACTIONS(3232), 1, anon_sym_COMMA, - STATE(2791), 1, + ACTIONS(3234), 1, + anon_sym_RPAREN, + STATE(2722), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166888] = 4, - ACTIONS(4323), 1, - anon_sym_COMMA, - ACTIONS(4325), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + [165270] = 3, + STATE(2737), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166902] = 4, - ACTIONS(4327), 1, + ACTIONS(1261), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [165282] = 4, + ACTIONS(4283), 1, anon_sym_COMMA, - ACTIONS(4329), 1, + ACTIONS(4285), 1, anon_sym_RBRACK, - STATE(2748), 1, + STATE(2740), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166916] = 4, - ACTIONS(4080), 1, + [165296] = 3, + STATE(2814), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1190), 2, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(4331), 1, + [165308] = 4, + ACTIONS(702), 1, anon_sym_RBRACE, - STATE(2733), 1, + ACTIONS(4287), 1, + anon_sym_COMMA, + STATE(2770), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165322] = 3, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166930] = 4, - ACTIONS(3933), 1, + ACTIONS(1084), 2, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(4333), 1, - anon_sym_COLON, - STATE(2668), 1, + [165334] = 3, + STATE(2814), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166944] = 4, - ACTIONS(4335), 1, - anon_sym_COMMA, - ACTIONS(4337), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + ACTIONS(1344), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [165346] = 3, + STATE(2814), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166958] = 4, - ACTIONS(4339), 1, - anon_sym_COMMA, - ACTIONS(4341), 1, + ACTIONS(1325), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [165358] = 4, + ACTIONS(4079), 1, + anon_sym_PIPE, + ACTIONS(4289), 1, anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + STATE(2666), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166972] = 4, - ACTIONS(1083), 1, - anon_sym_RPAREN, - ACTIONS(4343), 1, + [165372] = 4, + ACTIONS(3292), 1, anon_sym_COMMA, - STATE(2791), 1, + ACTIONS(3294), 1, + anon_sym_RPAREN, + STATE(2831), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166986] = 4, - ACTIONS(1069), 1, - anon_sym_RPAREN, - ACTIONS(4345), 1, - anon_sym_COMMA, - STATE(2791), 1, - aux_sym_argument_list_repeat1, + [165386] = 3, + ACTIONS(4291), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167000] = 4, - ACTIONS(3210), 1, + ACTIONS(1313), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [165398] = 4, + ACTIONS(3168), 1, anon_sym_COMMA, - ACTIONS(3212), 1, + ACTIONS(3170), 1, anon_sym_RBRACK, - STATE(2800), 1, + STATE(2815), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167014] = 4, - ACTIONS(2946), 1, - anon_sym_RBRACE, - ACTIONS(4080), 1, - anon_sym_PIPE, - STATE(2733), 1, - aux_sym_union_type_repeat1, + [165412] = 3, + ACTIONS(4293), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167028] = 4, - ACTIONS(3882), 1, + ACTIONS(1231), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [165424] = 4, + ACTIONS(3138), 1, anon_sym_COMMA, - ACTIONS(4347), 1, - anon_sym_RPAREN, - STATE(2797), 1, - aux_sym_function_type_repeat1, + ACTIONS(3140), 1, + anon_sym_RBRACK, + STATE(2705), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167042] = 4, - ACTIONS(4349), 1, - anon_sym_COMMA, - ACTIONS(4351), 1, - anon_sym_RBRACK, - STATE(2748), 1, - aux_sym_subscript_repeat1, + [165438] = 3, + ACTIONS(4295), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167056] = 4, - ACTIONS(3882), 1, + ACTIONS(1084), 2, + anon_sym_RBRACE, + anon_sym_PIPE, + [165450] = 4, + ACTIONS(3832), 1, anon_sym_COMMA, - ACTIONS(4353), 1, + ACTIONS(4297), 1, anon_sym_RPAREN, - STATE(2797), 1, + STATE(2699), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167070] = 4, - ACTIONS(3763), 1, - sym_identifier, - STATE(2930), 1, - sym_dotted_name, - STATE(2972), 1, - sym_aliased_import, + [165464] = 4, + ACTIONS(712), 1, + anon_sym_RBRACE, + ACTIONS(4299), 1, + anon_sym_COMMA, + STATE(2770), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167084] = 4, - ACTIONS(4068), 1, + [165478] = 4, + ACTIONS(4000), 1, anon_sym_PIPE, - ACTIONS(4355), 1, - anon_sym_RBRACK, - STATE(2891), 1, + ACTIONS(4301), 1, + anon_sym_COLON, + STATE(2595), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167098] = 3, - STATE(2871), 1, - aux_sym_union_type_repeat1, + [165492] = 4, + ACTIONS(1340), 1, + anon_sym_RPAREN, + ACTIONS(4303), 1, + anon_sym_COMMA, + STATE(2753), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1338), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [167110] = 4, - ACTIONS(3214), 1, + [165506] = 4, + ACTIONS(4305), 1, anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(4307), 1, anon_sym_RBRACK, - STATE(2880), 1, + STATE(2740), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167124] = 3, - ACTIONS(4357), 1, - anon_sym_DASH_GT, + [165520] = 3, + ACTIONS(4309), 1, + anon_sym_COMMA, + ACTIONS(4311), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1418), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [167136] = 4, - ACTIONS(3336), 1, - anon_sym_COMMA, - ACTIONS(3338), 1, - anon_sym_RPAREN, - STATE(2883), 1, - aux_sym_argument_list_repeat1, + [165531] = 3, + ACTIONS(4313), 1, + anon_sym_if, + ACTIONS(4315), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167150] = 3, - ACTIONS(4359), 1, - anon_sym_DASH_GT, - ACTIONS(4361), 1, + [165542] = 3, + ACTIONS(1227), 1, + sym_string_start, + STATE(1680), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165553] = 3, + ACTIONS(2107), 1, anon_sym_LBRACE, + STATE(1941), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167161] = 3, - ACTIONS(896), 1, - sym_string_start, - STATE(1738), 1, - sym_string, + [165564] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167172] = 3, - ACTIONS(4363), 1, + ACTIONS(3348), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [165573] = 3, + ACTIONS(4317), 1, + anon_sym_LBRACE, + STATE(1875), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165584] = 3, + ACTIONS(4319), 1, anon_sym_if, - ACTIONS(4365), 1, + ACTIONS(4321), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167183] = 3, - ACTIONS(2005), 1, - anon_sym_LBRACE, - STATE(1275), 1, - sym_dict_expr, + [165595] = 3, + ACTIONS(4323), 1, + anon_sym_COMMA, + ACTIONS(4325), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167194] = 3, - ACTIONS(4367), 1, + [165606] = 3, + ACTIONS(4327), 1, anon_sym_if, - ACTIONS(4369), 1, + ACTIONS(4329), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165617] = 3, + ACTIONS(4331), 1, + anon_sym_if, + ACTIONS(4333), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167205] = 3, - ACTIONS(2130), 1, + [165628] = 3, + ACTIONS(4317), 1, anon_sym_LBRACE, - STATE(2017), 1, + STATE(1854), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167216] = 3, - ACTIONS(4371), 1, + [165639] = 3, + ACTIONS(4335), 1, + anon_sym_as, + ACTIONS(4337), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165650] = 3, + ACTIONS(4339), 1, anon_sym_if, - ACTIONS(4373), 1, + ACTIONS(4341), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167227] = 3, - ACTIONS(920), 1, - sym_string_start, - STATE(1705), 1, - sym_string, + [165661] = 3, + ACTIONS(4343), 1, + anon_sym_if, + ACTIONS(4345), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167238] = 3, - ACTIONS(2062), 1, - anon_sym_LBRACE, - STATE(1668), 1, - sym_dict_expr, + [165672] = 3, + ACTIONS(4347), 1, + anon_sym_if, + ACTIONS(4349), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167249] = 3, - ACTIONS(4375), 1, + [165683] = 3, + ACTIONS(4351), 1, anon_sym_if, - ACTIONS(4377), 1, + ACTIONS(4353), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167260] = 3, - ACTIONS(4379), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_dict_expr, + [165694] = 3, + ACTIONS(4355), 1, + anon_sym_COMMA, + ACTIONS(4357), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167271] = 3, - ACTIONS(2130), 1, - anon_sym_LBRACE, - STATE(2000), 1, - sym_dict_expr, + [165705] = 3, + ACTIONS(4359), 1, + anon_sym_COMMA, + ACTIONS(4361), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167282] = 3, - ACTIONS(1881), 1, - anon_sym_LBRACE, - STATE(1923), 1, - sym_dict_expr, + [165716] = 3, + ACTIONS(4363), 1, + anon_sym_COMMA, + ACTIONS(4365), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167293] = 3, - ACTIONS(1975), 1, - anon_sym_LBRACE, - STATE(1388), 1, - sym_dict_expr, + [165727] = 3, + ACTIONS(4367), 1, + anon_sym_if, + ACTIONS(4369), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167304] = 3, - ACTIONS(1975), 1, + [165738] = 3, + ACTIONS(4371), 1, anon_sym_LBRACE, - STATE(1334), 1, + STATE(790), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167315] = 3, - ACTIONS(4381), 1, - anon_sym_if, - ACTIONS(4383), 1, - anon_sym_RBRACE, + [165749] = 3, + ACTIONS(4373), 1, + anon_sym_COMMA, + ACTIONS(4375), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167326] = 3, - ACTIONS(4385), 1, + [165760] = 3, + ACTIONS(4377), 1, anon_sym_if, - ACTIONS(4387), 1, + ACTIONS(4379), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167337] = 3, - ACTIONS(2062), 1, + [165771] = 3, + ACTIONS(4381), 1, + anon_sym_DASH_GT, + ACTIONS(4383), 1, anon_sym_LBRACE, - STATE(1633), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167348] = 3, - ACTIONS(920), 1, - sym_string_start, - STATE(1680), 1, - sym_string, + [165782] = 3, + ACTIONS(4385), 1, + anon_sym_COMMA, + ACTIONS(4387), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167359] = 3, + [165793] = 3, ACTIONS(4389), 1, anon_sym_if, ACTIONS(4391), 1, @@ -160150,5461 +156415,5380 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167370] = 3, - ACTIONS(4393), 1, - anon_sym_if, - ACTIONS(4395), 1, + [165804] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4192), 2, + anon_sym_COMMA, anon_sym_RBRACE, + [165813] = 3, + ACTIONS(4393), 1, + anon_sym_LBRACE, + STATE(660), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167381] = 2, + [165824] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(1313), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165835] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4397), 2, + ACTIONS(3258), 2, anon_sym_COMMA, anon_sym_RBRACK, - [167390] = 3, - ACTIONS(4399), 1, - anon_sym_if, - ACTIONS(4401), 1, - anon_sym_RBRACE, + [165844] = 3, + ACTIONS(1537), 1, + anon_sym_RBRACK, + ACTIONS(4395), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167401] = 3, - ACTIONS(4403), 1, + [165855] = 3, + ACTIONS(4393), 1, + anon_sym_LBRACE, + STATE(628), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165866] = 3, + ACTIONS(4397), 1, anon_sym_COMMA, - ACTIONS(4405), 1, + ACTIONS(4399), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167412] = 2, + [165877] = 3, + ACTIONS(2107), 1, + anon_sym_LBRACE, + STATE(1932), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4148), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [167421] = 3, + [165888] = 3, + ACTIONS(4401), 1, + anon_sym_DASH_GT, + ACTIONS(4403), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165899] = 3, + ACTIONS(4405), 1, + anon_sym_if, ACTIONS(4407), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165910] = 3, + ACTIONS(2050), 1, anon_sym_LBRACE, - STATE(1915), 1, + STATE(1773), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167432] = 3, + [165921] = 3, + ACTIONS(4335), 1, + anon_sym_as, ACTIONS(4409), 1, - anon_sym_if, - ACTIONS(4411), 1, - anon_sym_RBRACE, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165932] = 3, + ACTIONS(1227), 1, + sym_string_start, + STATE(1712), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165943] = 3, + ACTIONS(1957), 1, + anon_sym_LBRACE, + STATE(1299), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167443] = 3, - ACTIONS(2005), 1, + [165954] = 3, + ACTIONS(1867), 1, anon_sym_LBRACE, - STATE(1258), 1, + STATE(1784), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167454] = 3, - ACTIONS(4413), 1, + [165965] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3352), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [165974] = 3, + ACTIONS(4411), 1, anon_sym_if, - ACTIONS(4415), 1, + ACTIONS(4413), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167465] = 3, - ACTIONS(4417), 1, + [165985] = 3, + ACTIONS(4415), 1, anon_sym_if, - ACTIONS(4419), 1, + ACTIONS(4417), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167476] = 3, - ACTIONS(1629), 1, - anon_sym_RBRACK, + [165996] = 3, + ACTIONS(4419), 1, + anon_sym_DASH_GT, ACTIONS(4421), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167487] = 3, + [166007] = 3, ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(4425), 1, anon_sym_LBRACE, + STATE(1101), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167498] = 3, + [166018] = 3, + ACTIONS(4425), 1, + anon_sym_DASH_GT, ACTIONS(4427), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_in, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167509] = 3, - ACTIONS(4407), 1, + [166029] = 3, + ACTIONS(1867), 1, anon_sym_LBRACE, - STATE(1959), 1, + STATE(1787), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167520] = 2, + [166040] = 3, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + ACTIONS(4431), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3304), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [167529] = 3, - ACTIONS(4431), 1, - anon_sym_as, + [166051] = 3, ACTIONS(4433), 1, - sym__newline, + anon_sym_DASH_GT, + ACTIONS(4435), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167540] = 3, - ACTIONS(4379), 1, + [166062] = 3, + ACTIONS(4371), 1, anon_sym_LBRACE, - STATE(963), 1, + STATE(819), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167551] = 3, - ACTIONS(4435), 1, - anon_sym_DASH_GT, + [166073] = 3, ACTIONS(4437), 1, + anon_sym_if, + ACTIONS(4439), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166084] = 3, + ACTIONS(4441), 1, + anon_sym_if, + ACTIONS(4443), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166095] = 3, + ACTIONS(4445), 1, + anon_sym_DASH_GT, + ACTIONS(4447), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167562] = 2, + [166106] = 3, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(1122), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3412), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [167571] = 2, + [166117] = 3, + ACTIONS(4449), 1, + anon_sym_DASH_GT, + ACTIONS(4451), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3374), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [167580] = 3, - ACTIONS(4439), 1, + [166128] = 3, + ACTIONS(4453), 1, anon_sym_DASH_GT, - ACTIONS(4441), 1, + ACTIONS(4455), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167591] = 3, - ACTIONS(4443), 1, + [166139] = 3, + ACTIONS(4457), 1, anon_sym_if, - ACTIONS(4445), 1, + ACTIONS(4459), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167602] = 3, - ACTIONS(4447), 1, + [166150] = 3, + ACTIONS(4461), 1, anon_sym_if, - ACTIONS(4449), 1, + ACTIONS(4463), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167613] = 3, - ACTIONS(4451), 1, - anon_sym_DASH_GT, - ACTIONS(4453), 1, + [166161] = 3, + ACTIONS(1995), 1, anon_sym_LBRACE, + STATE(1246), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167624] = 3, - ACTIONS(4455), 1, - anon_sym_DASH_GT, - ACTIONS(4457), 1, + [166172] = 3, + ACTIONS(1064), 1, + sym_string_start, + STATE(1623), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166183] = 3, + ACTIONS(1995), 1, anon_sym_LBRACE, + STATE(1234), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167635] = 3, - ACTIONS(4459), 1, - anon_sym_DASH_GT, - ACTIONS(4461), 1, + [166194] = 3, + ACTIONS(2050), 1, anon_sym_LBRACE, + STATE(1755), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167646] = 3, - ACTIONS(4463), 1, - anon_sym_if, - ACTIONS(4465), 1, - anon_sym_RBRACE, + [166205] = 3, + ACTIONS(1064), 1, + sym_string_start, + STATE(1609), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167657] = 3, + [166216] = 3, + ACTIONS(4465), 1, + anon_sym_COMMA, ACTIONS(4467), 1, - anon_sym_DASH_GT, - ACTIONS(4469), 1, - anon_sym_LBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167668] = 3, - ACTIONS(4471), 1, - anon_sym_DASH_GT, - ACTIONS(4473), 1, - anon_sym_LBRACE, + [166227] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167679] = 3, - ACTIONS(4475), 1, - anon_sym_LBRACE, - STATE(1121), 1, - sym_dict_expr, + ACTIONS(4469), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [166236] = 2, + ACTIONS(4471), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167690] = 3, - ACTIONS(4475), 1, - anon_sym_LBRACE, - STATE(1106), 1, - sym_dict_expr, + [166244] = 2, + ACTIONS(4473), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167701] = 3, - ACTIONS(1881), 1, - anon_sym_LBRACE, - STATE(1836), 1, - sym_dict_expr, + [166252] = 2, + ACTIONS(4475), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167712] = 3, + [166260] = 2, ACTIONS(4477), 1, - anon_sym_LBRACE, - STATE(979), 1, - sym_dict_expr, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167723] = 3, - ACTIONS(896), 1, - sym_string_start, - STATE(1722), 1, - sym_string, + [166268] = 2, + ACTIONS(4479), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167734] = 3, - ACTIONS(4479), 1, - anon_sym_COMMA, + [166276] = 2, ACTIONS(4481), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167745] = 3, + [166284] = 2, ACTIONS(4483), 1, - anon_sym_if, - ACTIONS(4485), 1, - anon_sym_RBRACE, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167756] = 3, - ACTIONS(4477), 1, - anon_sym_LBRACE, - STATE(1003), 1, - sym_dict_expr, + [166292] = 2, + ACTIONS(4485), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167767] = 3, + [166300] = 2, ACTIONS(4487), 1, - anon_sym_COMMA, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166308] = 2, ACTIONS(4489), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167778] = 3, - ACTIONS(4431), 1, - anon_sym_as, + [166316] = 2, + ACTIONS(3068), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166324] = 2, ACTIONS(4491), 1, - sym__newline, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167789] = 3, + [166332] = 2, ACTIONS(4493), 1, - anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166340] = 2, ACTIONS(4495), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167800] = 3, + [166348] = 2, ACTIONS(4497), 1, - anon_sym_COMMA, - ACTIONS(4499), 1, - anon_sym_in, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166356] = 2, + ACTIONS(3735), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167811] = 3, + [166364] = 2, + ACTIONS(4499), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [166372] = 2, ACTIONS(4501), 1, - anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166380] = 2, ACTIONS(4503), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167822] = 3, + [166388] = 2, ACTIONS(4505), 1, - anon_sym_if, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166396] = 2, ACTIONS(4507), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167833] = 3, + [166404] = 2, ACTIONS(4509), 1, - anon_sym_COMMA, - ACTIONS(4511), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167844] = 3, + [166412] = 2, + ACTIONS(4511), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166420] = 2, ACTIONS(4513), 1, - anon_sym_if, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166428] = 2, ACTIONS(4515), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167855] = 3, + [166436] = 2, ACTIONS(4517), 1, - anon_sym_COMMA, - ACTIONS(4519), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167866] = 2, + [166444] = 2, + ACTIONS(4519), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [166452] = 2, ACTIONS(4521), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167874] = 2, + [166460] = 2, ACTIONS(4523), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167882] = 2, - ACTIONS(4525), 1, - sym__newline, + [166468] = 2, + ACTIONS(3220), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167890] = 2, - ACTIONS(4527), 1, - sym_identifier, + [166476] = 2, + ACTIONS(4525), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167898] = 2, - ACTIONS(4529), 1, - anon_sym_DQUOTE, + [166484] = 2, + ACTIONS(4527), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167906] = 2, - ACTIONS(3118), 1, - anon_sym_RBRACE, + [166492] = 2, + ACTIONS(3284), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167914] = 2, - ACTIONS(3812), 1, + [166500] = 2, + ACTIONS(4529), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167922] = 2, + [166508] = 2, ACTIONS(4531), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [167930] = 2, - ACTIONS(4491), 1, - sym__newline, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167938] = 2, + [166516] = 2, ACTIONS(4533), 1, - sym__newline, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167946] = 2, + [166524] = 2, ACTIONS(4535), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167954] = 2, - ACTIONS(4433), 1, + [166532] = 2, + ACTIONS(4537), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167962] = 2, - ACTIONS(4537), 1, + [166540] = 2, + ACTIONS(3731), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167970] = 2, + [166548] = 2, ACTIONS(4539), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167978] = 2, + [166556] = 2, ACTIONS(4541), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167986] = 2, + [166564] = 2, ACTIONS(4543), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167994] = 2, + [166572] = 2, ACTIONS(4545), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168002] = 2, - ACTIONS(2215), 1, + [166580] = 2, + ACTIONS(4547), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168010] = 2, - ACTIONS(4547), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [168018] = 2, + [166588] = 2, ACTIONS(4549), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168026] = 2, + [166596] = 2, ACTIONS(4551), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168034] = 2, + [166604] = 2, ACTIONS(4553), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [168042] = 2, + [166612] = 2, ACTIONS(4555), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168050] = 2, - ACTIONS(3783), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168058] = 2, + [166620] = 2, ACTIONS(4557), 1, - sym_identifier, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168066] = 2, + [166628] = 2, ACTIONS(4559), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168074] = 2, + [166636] = 2, ACTIONS(4561), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168082] = 2, + [166644] = 2, ACTIONS(4563), 1, - sym_identifier, + sym_integer, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166652] = 2, + ACTIONS(3048), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168090] = 2, + [166660] = 2, ACTIONS(4565), 1, - anon_sym_in, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168098] = 2, + [166668] = 2, ACTIONS(4567), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168106] = 2, + [166676] = 2, ACTIONS(4569), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168114] = 2, + [166684] = 2, ACTIONS(4571), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168122] = 2, - ACTIONS(4573), 1, - anon_sym_in, + [166692] = 2, + ACTIONS(2203), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168130] = 2, - ACTIONS(4575), 1, - sym__newline, + [166700] = 2, + ACTIONS(4573), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168138] = 2, - ACTIONS(2219), 1, - anon_sym_RBRACE, + [166708] = 2, + ACTIONS(4575), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168146] = 2, + [166716] = 2, ACTIONS(4577), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168154] = 2, + [166724] = 2, ACTIONS(4579), 1, - sym__newline, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168162] = 2, + [166732] = 2, ACTIONS(4581), 1, - anon_sym_RBRACE, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168170] = 2, - ACTIONS(3178), 1, + [166740] = 2, + ACTIONS(4337), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168178] = 2, - ACTIONS(3338), 1, + [166748] = 2, + ACTIONS(3234), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168186] = 2, + [166756] = 2, ACTIONS(4583), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168194] = 2, + [166764] = 2, ACTIONS(4585), 1, - anon_sym_RBRACE, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168202] = 2, + [166772] = 2, ACTIONS(4587), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168210] = 2, + [166780] = 2, ACTIONS(4589), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + sym__newline, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168218] = 2, + [166788] = 2, ACTIONS(4591), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168226] = 2, - ACTIONS(4593), 1, + [166796] = 2, + ACTIONS(3784), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168234] = 2, + [166804] = 2, + ACTIONS(4593), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [166812] = 2, ACTIONS(4595), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168242] = 2, + [166820] = 2, ACTIONS(4597), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168250] = 2, + [166828] = 2, ACTIONS(4599), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168258] = 2, - ACTIONS(4601), 1, - sym_identifier, + [166836] = 2, + ACTIONS(3046), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168266] = 2, - ACTIONS(2080), 1, - anon_sym_COLON, + [166844] = 2, + ACTIONS(4601), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168274] = 2, + [166852] = 2, ACTIONS(4603), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168282] = 2, + [166860] = 2, ACTIONS(4605), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168290] = 2, + [166868] = 2, ACTIONS(4607), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168298] = 2, + [166876] = 2, ACTIONS(4609), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168306] = 2, - ACTIONS(4611), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168314] = 2, - ACTIONS(3096), 1, - anon_sym_RBRACE, + [166884] = 2, + ACTIONS(4611), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168322] = 2, + [166892] = 2, ACTIONS(4613), 1, - anon_sym_DQUOTE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168330] = 2, + [166900] = 2, ACTIONS(4615), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168338] = 2, + [166908] = 2, ACTIONS(4617), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168346] = 2, + [166916] = 2, + ACTIONS(2048), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166924] = 2, ACTIONS(4619), 1, - anon_sym_RBRACE, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168354] = 2, + [166932] = 2, ACTIONS(4621), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168362] = 2, + [166940] = 2, ACTIONS(4623), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168370] = 2, + [166948] = 2, ACTIONS(4625), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168378] = 2, + [166956] = 2, ACTIONS(4627), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168386] = 2, + [166964] = 2, ACTIONS(4629), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168394] = 2, + [166972] = 2, ACTIONS(4631), 1, - anon_sym_RBRACK, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [166980] = 2, + ACTIONS(3294), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168402] = 2, + [166988] = 2, ACTIONS(4633), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168410] = 2, + [166996] = 2, ACTIONS(4635), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168418] = 2, + [167004] = 2, ACTIONS(4637), 1, - anon_sym_COLON, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168426] = 2, + [167012] = 2, ACTIONS(4639), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168434] = 2, - ACTIONS(3344), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168442] = 2, + [167020] = 2, ACTIONS(4641), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168450] = 2, + [167028] = 2, ACTIONS(4643), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_in, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168458] = 2, + [167036] = 2, ACTIONS(4645), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168466] = 2, + [167044] = 2, ACTIONS(4647), 1, - sym_identifier, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168474] = 2, + [167052] = 2, ACTIONS(4649), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168482] = 2, - ACTIONS(4651), 1, - anon_sym_in, + [167060] = 2, + ACTIONS(3256), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168490] = 2, - ACTIONS(4653), 1, - anon_sym_RBRACE, + [167068] = 2, + ACTIONS(4651), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168498] = 2, - ACTIONS(3284), 1, - anon_sym_RPAREN, + [167076] = 2, + ACTIONS(4653), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168506] = 2, + [167084] = 2, ACTIONS(4655), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168514] = 2, + [167092] = 2, ACTIONS(4657), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168522] = 2, + [167100] = 2, ACTIONS(4659), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168530] = 2, + [167108] = 2, ACTIONS(4661), 1, - anon_sym_COLON, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168538] = 2, + [167116] = 2, ACTIONS(4663), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168546] = 2, + [167124] = 2, ACTIONS(4665), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168554] = 2, + [167132] = 2, ACTIONS(4667), 1, - anon_sym_COLON, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168562] = 2, + [167140] = 2, ACTIONS(4669), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168570] = 2, - ACTIONS(3248), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168578] = 2, - ACTIONS(4671), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [168586] = 2, - ACTIONS(2305), 1, - anon_sym_RBRACE, + [167148] = 2, + ACTIONS(4671), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168594] = 2, + [167156] = 2, ACTIONS(4673), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168602] = 2, + [167164] = 2, ACTIONS(4675), 1, - anon_sym_RBRACK, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168610] = 2, + [167172] = 2, ACTIONS(4677), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168618] = 2, + [167180] = 2, ACTIONS(4679), 1, - anon_sym_COLON, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168626] = 2, + [167188] = 2, ACTIONS(4681), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168634] = 2, + [167196] = 2, ACTIONS(4683), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168642] = 2, + [167204] = 2, ACTIONS(4685), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168650] = 2, + [167212] = 2, ACTIONS(4687), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168658] = 2, + [167220] = 2, ACTIONS(4689), 1, - anon_sym_COLON, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167228] = 2, + ACTIONS(3050), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168666] = 2, + [167236] = 2, + ACTIONS(3054), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167244] = 2, ACTIONS(4691), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168674] = 2, - ACTIONS(3384), 1, - sym__newline, + [167252] = 2, + ACTIONS(3723), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168682] = 2, + [167260] = 2, ACTIONS(4693), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168690] = 2, + [167268] = 2, ACTIONS(4695), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168698] = 2, + [167276] = 2, + ACTIONS(3338), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167284] = 2, ACTIONS(4697), 1, - ts_builtin_sym_end, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168706] = 2, + [167292] = 2, ACTIONS(4699), 1, - anon_sym_in, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167300] = 2, + ACTIONS(3762), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168714] = 2, + [167308] = 2, ACTIONS(4701), 1, - anon_sym_RPAREN, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [167316] = 2, + ACTIONS(3739), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167324] = 2, + ACTIONS(3066), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168722] = 2, + [167332] = 2, ACTIONS(4703), 1, - sym__newline, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168730] = 2, + [167340] = 2, ACTIONS(4705), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168738] = 2, + [167348] = 2, ACTIONS(4707), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168746] = 2, + [167356] = 2, ACTIONS(4709), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + sym_identifier, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168754] = 2, + [167364] = 2, ACTIONS(4711), 1, - anon_sym_DQUOTE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168762] = 2, + [167372] = 2, ACTIONS(4713), 1, - sym__newline, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168770] = 2, + [167380] = 2, ACTIONS(4715), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168778] = 2, - ACTIONS(3112), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168786] = 2, + [167388] = 2, ACTIONS(4717), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168794] = 2, + [167396] = 2, ACTIONS(4719), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168802] = 2, - ACTIONS(3846), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168810] = 2, + [167404] = 2, ACTIONS(4721), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168818] = 2, + [167412] = 2, ACTIONS(4723), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168826] = 2, - ACTIONS(3396), 1, - sym__newline, + [167420] = 2, + ACTIONS(4725), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168834] = 2, - ACTIONS(4725), 1, - anon_sym_in, + [167428] = 2, + ACTIONS(3270), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168842] = 2, + [167436] = 2, ACTIONS(4727), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168850] = 2, + [167444] = 2, ACTIONS(4729), 1, - sym__newline, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168858] = 2, + [167452] = 2, ACTIONS(4731), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167460] = 2, + ACTIONS(2195), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167468] = 2, + ACTIONS(2189), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168866] = 2, + [167476] = 2, ACTIONS(4733), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168874] = 2, + [167484] = 2, ACTIONS(4735), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168882] = 2, + [167492] = 2, ACTIONS(4737), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168890] = 2, + [167500] = 2, ACTIONS(4739), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168898] = 2, + [167508] = 2, + ACTIONS(4409), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167516] = 2, ACTIONS(4741), 1, - anon_sym_COLON, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167524] = 2, + ACTIONS(3828), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168906] = 2, + [167532] = 2, ACTIONS(4743), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168914] = 2, + [167540] = 2, ACTIONS(4745), 1, - sym_identifier, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167548] = 2, + ACTIONS(3052), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167556] = 2, + ACTIONS(3158), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168922] = 2, + [167564] = 2, ACTIONS(4747), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168930] = 2, + [167572] = 2, ACTIONS(4749), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168938] = 2, + [167580] = 2, ACTIONS(4751), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168946] = 2, + [167588] = 2, ACTIONS(4753), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168954] = 2, + [167596] = 2, ACTIONS(4755), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168962] = 2, + [167604] = 2, ACTIONS(4757), 1, - sym__newline, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168970] = 2, + [167612] = 2, ACTIONS(4759), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168978] = 2, + [167620] = 2, ACTIONS(4761), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168986] = 2, + [167628] = 2, ACTIONS(4763), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168994] = 2, + [167636] = 2, ACTIONS(4765), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169002] = 2, + [167644] = 2, ACTIONS(4767), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169010] = 2, + [167652] = 2, ACTIONS(4769), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169018] = 2, + [167660] = 2, ACTIONS(4771), 1, - anon_sym_RBRACK, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169026] = 2, + [167668] = 2, ACTIONS(4773), 1, - sym__newline, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169034] = 2, + [167676] = 2, ACTIONS(4775), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169042] = 2, + [167684] = 2, ACTIONS(4777), 1, - anon_sym_in, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169050] = 2, + [167692] = 2, ACTIONS(4779), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169058] = 2, + [167700] = 2, ACTIONS(4781), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169066] = 2, - ACTIONS(3771), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169074] = 2, + [167708] = 2, ACTIONS(4783), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169082] = 2, - ACTIONS(4421), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169090] = 2, + [167716] = 2, ACTIONS(4785), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169098] = 2, + [167724] = 2, ACTIONS(4787), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169106] = 2, - ACTIONS(3078), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169114] = 2, + [167732] = 2, ACTIONS(4789), 1, - anon_sym_DQUOTE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169122] = 2, + [167740] = 2, ACTIONS(4791), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169130] = 2, + [167748] = 2, ACTIONS(4793), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169138] = 2, + [167756] = 2, ACTIONS(4795), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169146] = 2, - ACTIONS(3300), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169154] = 2, + [167764] = 2, ACTIONS(4797), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + sym__newline, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169162] = 2, + [167772] = 2, ACTIONS(4799), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169170] = 2, + [167780] = 2, ACTIONS(4801), 1, - anon_sym_RBRACE, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169178] = 2, + [167788] = 2, ACTIONS(4803), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169186] = 2, + [167796] = 2, ACTIONS(4805), 1, - anon_sym_in, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169194] = 2, + [167804] = 2, ACTIONS(4807), 1, - anon_sym_RBRACE, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167812] = 2, + ACTIONS(3364), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169202] = 2, + [167820] = 2, ACTIONS(4809), 1, - anon_sym_in, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169210] = 2, + [167828] = 2, ACTIONS(4811), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169218] = 2, + [167836] = 2, ACTIONS(4813), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [169226] = 2, + [167844] = 2, ACTIONS(4815), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169234] = 2, + [167852] = 2, ACTIONS(4817), 1, - sym_integer, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169242] = 2, + [167860] = 2, ACTIONS(4819), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169250] = 2, + [167868] = 2, ACTIONS(4821), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169258] = 2, + [167876] = 2, ACTIONS(4823), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169266] = 2, + [167884] = 2, ACTIONS(4825), 1, - anon_sym_in, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169274] = 2, + [167892] = 2, ACTIONS(4827), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169282] = 2, + [167900] = 2, ACTIONS(4829), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169290] = 2, + [167908] = 2, ACTIONS(4831), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169298] = 2, + [167916] = 2, ACTIONS(4833), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169306] = 2, + [167924] = 2, ACTIONS(4835), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169314] = 2, - ACTIONS(3334), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169322] = 2, + [167932] = 2, ACTIONS(4837), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [169330] = 2, + [167940] = 2, ACTIONS(4839), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169338] = 2, + [167948] = 2, ACTIONS(4841), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169346] = 2, + [167956] = 2, ACTIONS(4843), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169354] = 2, + [167964] = 2, ACTIONS(4845), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169362] = 2, + [167972] = 2, ACTIONS(4847), 1, - anon_sym_COLON, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169370] = 2, + [167980] = 2, ACTIONS(4849), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169378] = 2, + [167988] = 2, ACTIONS(4851), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169386] = 2, + [167996] = 2, ACTIONS(4853), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169394] = 2, - ACTIONS(4855), 1, - anon_sym_RBRACE, + [168004] = 2, + ACTIONS(3200), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169402] = 2, - ACTIONS(3314), 1, - anon_sym_RPAREN, + [168012] = 2, + ACTIONS(4855), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169410] = 2, + [168020] = 2, ACTIONS(4857), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169418] = 2, + [168028] = 2, ACTIONS(4859), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169426] = 2, - ACTIONS(3874), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169434] = 2, + [168036] = 2, ACTIONS(4861), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169442] = 2, + [168044] = 2, ACTIONS(4863), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169450] = 2, + [168052] = 2, ACTIONS(4865), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169458] = 2, + [168060] = 2, ACTIONS(4867), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169466] = 2, + [168068] = 2, ACTIONS(4869), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169474] = 2, + [168076] = 2, ACTIONS(4871), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169482] = 2, + [168084] = 2, ACTIONS(4873), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169490] = 2, + [168092] = 2, ACTIONS(4875), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169498] = 2, + [168100] = 2, ACTIONS(4877), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169506] = 2, + [168108] = 2, ACTIONS(4879), 1, - anon_sym_RBRACK, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169514] = 2, + [168116] = 2, ACTIONS(4881), 1, - anon_sym_in, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169522] = 2, + [168124] = 2, ACTIONS(4883), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169530] = 2, + [168132] = 2, ACTIONS(4885), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169538] = 2, + [168140] = 2, ACTIONS(4887), 1, - anon_sym_COLON, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169546] = 2, + [168148] = 2, ACTIONS(4889), 1, - anon_sym_COLON, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169554] = 2, + [168156] = 2, ACTIONS(4891), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169562] = 2, + [168164] = 2, ACTIONS(4893), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169570] = 2, + [168172] = 2, ACTIONS(4895), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169578] = 2, + [168180] = 2, ACTIONS(4897), 1, - sym_identifier, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169586] = 2, + [168188] = 2, ACTIONS(4899), 1, - anon_sym_DQUOTE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169594] = 2, + [168196] = 2, ACTIONS(4901), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169602] = 2, + [168204] = 2, ACTIONS(4903), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169610] = 2, - ACTIONS(4905), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169618] = 2, - ACTIONS(3094), 1, - anon_sym_RBRACE, + [168212] = 2, + ACTIONS(4905), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169626] = 2, + [168220] = 2, ACTIONS(4907), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169634] = 2, - ACTIONS(3822), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169642] = 2, + [168228] = 2, ACTIONS(4909), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169650] = 2, + [168236] = 2, ACTIONS(4911), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169658] = 2, + [168244] = 2, ACTIONS(4913), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169666] = 2, + [168252] = 2, ACTIONS(4915), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169674] = 2, + [168260] = 2, ACTIONS(4917), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169682] = 2, + [168268] = 2, ACTIONS(4919), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169690] = 2, + [168276] = 2, ACTIONS(4921), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169698] = 2, + [168284] = 2, ACTIONS(4923), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169706] = 2, + [168292] = 2, ACTIONS(4925), 1, - anon_sym_LBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169714] = 2, + [168300] = 2, ACTIONS(4927), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169722] = 2, + [168308] = 2, ACTIONS(4929), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169730] = 2, + [168316] = 2, ACTIONS(4931), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169738] = 2, + [168324] = 2, ACTIONS(4933), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169746] = 2, + [168332] = 2, ACTIONS(4935), 1, - anon_sym_LBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169754] = 2, - ACTIONS(3808), 1, + [168340] = 2, + ACTIONS(3276), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [168348] = 2, + ACTIONS(3824), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169762] = 2, - ACTIONS(3102), 1, + [168356] = 2, + ACTIONS(3034), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169770] = 2, + [168364] = 2, + ACTIONS(3280), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [168372] = 2, ACTIONS(4937), 1, - anon_sym_LBRACE, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169778] = 2, + [168380] = 2, ACTIONS(4939), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169786] = 2, + [168388] = 2, ACTIONS(4941), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169794] = 2, + [168396] = 2, ACTIONS(4943), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169802] = 2, + [168404] = 2, ACTIONS(4945), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169810] = 2, + [168412] = 2, ACTIONS(4947), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169818] = 2, + [168420] = 2, ACTIONS(4949), 1, - anon_sym_DQUOTE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169826] = 2, + [168428] = 2, ACTIONS(4951), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169834] = 2, + [168436] = 2, ACTIONS(4953), 1, - anon_sym_LBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169842] = 2, + [168444] = 2, ACTIONS(4955), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169850] = 2, + [168452] = 2, ACTIONS(4957), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169858] = 2, + [168460] = 2, ACTIONS(4959), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169866] = 2, + [168468] = 2, ACTIONS(4961), 1, - anon_sym_for, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169874] = 2, - ACTIONS(4963), 1, + [168476] = 2, + ACTIONS(3056), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169882] = 2, - ACTIONS(4965), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169890] = 2, - ACTIONS(4967), 1, - anon_sym_RBRACK, + [168484] = 2, + ACTIONS(4963), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169898] = 2, - ACTIONS(4969), 1, + [168492] = 2, + ACTIONS(3810), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169906] = 2, - ACTIONS(4971), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169914] = 2, - ACTIONS(4973), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169922] = 2, - ACTIONS(4975), 1, + [168500] = 2, + ACTIONS(4965), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169930] = 2, - ACTIONS(4977), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169938] = 2, - ACTIONS(4979), 1, + [168508] = 2, + ACTIONS(3546), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169946] = 2, - ACTIONS(4981), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169954] = 2, - ACTIONS(3092), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169962] = 2, - ACTIONS(4983), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169970] = 2, - ACTIONS(4985), 1, + [168516] = 2, + ACTIONS(4967), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169978] = 2, - ACTIONS(4987), 1, + [168524] = 2, + ACTIONS(4395), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169986] = 2, - ACTIONS(4989), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169994] = 2, - ACTIONS(3424), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170002] = 2, - ACTIONS(4991), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170010] = 2, - ACTIONS(3878), 1, - anon_sym_RBRACE, + [168532] = 2, + ACTIONS(4969), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170018] = 2, - ACTIONS(4993), 1, + [168540] = 2, + ACTIONS(4971), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170026] = 2, - ACTIONS(4995), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170034] = 2, - ACTIONS(3114), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170042] = 2, - ACTIONS(4997), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170050] = 2, - ACTIONS(3268), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170058] = 2, - ACTIONS(4999), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170066] = 2, - ACTIONS(5001), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170074] = 2, - ACTIONS(5003), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170082] = 2, - ACTIONS(5005), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170090] = 2, - ACTIONS(5007), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170098] = 2, - ACTIONS(5009), 1, + [168548] = 2, + ACTIONS(4973), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170106] = 2, - ACTIONS(5011), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170114] = 2, - ACTIONS(5013), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170122] = 2, - ACTIONS(5015), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170130] = 2, - ACTIONS(5017), 1, + [168556] = 2, + ACTIONS(4975), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170138] = 2, - ACTIONS(5019), 1, + [168564] = 2, + ACTIONS(4977), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170146] = 2, - ACTIONS(5021), 1, - anon_sym_in, + [168572] = 2, + ACTIONS(2058), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170154] = 2, - ACTIONS(5023), 1, - sym_identifier, + [168580] = 2, + ACTIONS(4979), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170162] = 2, - ACTIONS(5025), 1, + [168588] = 2, + ACTIONS(4981), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170170] = 2, - ACTIONS(5027), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170178] = 2, - ACTIONS(3310), 1, - anon_sym_RPAREN, + [168596] = 2, + ACTIONS(4983), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170186] = 2, - ACTIONS(5029), 1, + [168604] = 2, + ACTIONS(4985), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170194] = 2, - ACTIONS(3116), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170202] = 2, - ACTIONS(5031), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170210] = 2, - ACTIONS(5033), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170218] = 2, - ACTIONS(2095), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170226] = 2, - ACTIONS(3850), 1, + [168612] = 2, + ACTIONS(4987), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170234] = 2, - ACTIONS(5035), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170242] = 2, - ACTIONS(5037), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170250] = 2, - ACTIONS(5039), 1, + [168620] = 2, + ACTIONS(4989), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170258] = 2, - ACTIONS(5041), 1, - anon_sym_COLON, + [168628] = 2, + ACTIONS(4991), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170266] = 2, - ACTIONS(5043), 1, + [168636] = 2, + ACTIONS(4993), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170274] = 2, - ACTIONS(5045), 1, - anon_sym_for, + [168644] = 2, + ACTIONS(4995), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170282] = 2, - ACTIONS(5047), 1, + [168652] = 2, + ACTIONS(4997), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170290] = 2, - ACTIONS(5049), 1, - sym_identifier, + [168660] = 2, + ACTIONS(4999), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170298] = 2, + [168668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5051), 1, + ACTIONS(5001), 1, sym_line_continuation, - [170305] = 2, + [168675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5053), 1, + ACTIONS(5003), 1, sym_line_continuation, - [170312] = 2, + [168682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 1, + ACTIONS(5005), 1, sym_line_continuation, - [170319] = 2, + [168689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5057), 1, + ACTIONS(5007), 1, sym_line_continuation, - [170326] = 2, + [168696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5009), 1, sym_line_continuation, - [170333] = 2, + [168703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5061), 1, + ACTIONS(5011), 1, sym_line_continuation, - [170340] = 2, + [168710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, + ACTIONS(5013), 1, sym_line_continuation, - [170347] = 2, + [168717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 1, + ACTIONS(5015), 1, sym_line_continuation, - [170354] = 2, + [168724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, + ACTIONS(5017), 1, sym_line_continuation, - [170361] = 2, + [168731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5019), 1, sym_line_continuation, - [170368] = 2, + [168738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5021), 1, sym_line_continuation, - [170375] = 2, + [168745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5073), 1, + ACTIONS(5023), 1, sym_line_continuation, - [170382] = 2, + [168752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(5025), 1, sym_line_continuation, - [170389] = 2, + [168759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5077), 1, + ACTIONS(5027), 1, sym_line_continuation, - [170396] = 2, + [168766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5079), 1, + ACTIONS(5029), 1, sym_line_continuation, - [170403] = 2, + [168773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 1, + ACTIONS(5031), 1, sym_line_continuation, - [170410] = 2, + [168780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 1, + ACTIONS(5033), 1, sym_line_continuation, - [170417] = 2, + [168787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5085), 1, + ACTIONS(5035), 1, sym_line_continuation, - [170424] = 2, + [168794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5087), 1, + ACTIONS(5037), 1, sym_line_continuation, - [170431] = 2, + [168801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 1, + ACTIONS(5039), 1, sym_line_continuation, - [170438] = 2, + [168808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(5041), 1, sym_line_continuation, - [170445] = 2, + [168815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 1, + ACTIONS(5043), 1, sym_line_continuation, - [170452] = 2, + [168822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5095), 1, + ACTIONS(5045), 1, sym_line_continuation, - [170459] = 2, + [168829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 1, + ACTIONS(5047), 1, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(144)] = 0, - [SMALL_STATE(145)] = 121, - [SMALL_STATE(146)] = 242, - [SMALL_STATE(147)] = 321, - [SMALL_STATE(148)] = 440, - [SMALL_STATE(149)] = 561, - [SMALL_STATE(150)] = 682, - [SMALL_STATE(151)] = 803, - [SMALL_STATE(152)] = 924, - [SMALL_STATE(153)] = 1003, - [SMALL_STATE(154)] = 1124, - [SMALL_STATE(155)] = 1245, - [SMALL_STATE(156)] = 1366, - [SMALL_STATE(157)] = 1487, - [SMALL_STATE(158)] = 1566, - [SMALL_STATE(159)] = 1687, - [SMALL_STATE(160)] = 1808, - [SMALL_STATE(161)] = 1929, - [SMALL_STATE(162)] = 2050, - [SMALL_STATE(163)] = 2171, - [SMALL_STATE(164)] = 2292, - [SMALL_STATE(165)] = 2413, - [SMALL_STATE(166)] = 2492, - [SMALL_STATE(167)] = 2613, - [SMALL_STATE(168)] = 2692, - [SMALL_STATE(169)] = 2813, - [SMALL_STATE(170)] = 2932, - [SMALL_STATE(171)] = 3053, - [SMALL_STATE(172)] = 3174, - [SMALL_STATE(173)] = 3295, - [SMALL_STATE(174)] = 3416, - [SMALL_STATE(175)] = 3537, - [SMALL_STATE(176)] = 3658, - [SMALL_STATE(177)] = 3779, - [SMALL_STATE(178)] = 3898, - [SMALL_STATE(179)] = 4019, - [SMALL_STATE(180)] = 4140, - [SMALL_STATE(181)] = 4261, - [SMALL_STATE(182)] = 4382, - [SMALL_STATE(183)] = 4503, - [SMALL_STATE(184)] = 4624, - [SMALL_STATE(185)] = 4745, - [SMALL_STATE(186)] = 4824, - [SMALL_STATE(187)] = 4945, - [SMALL_STATE(188)] = 5066, - [SMALL_STATE(189)] = 5187, - [SMALL_STATE(190)] = 5301, - [SMALL_STATE(191)] = 5415, - [SMALL_STATE(192)] = 5529, - [SMALL_STATE(193)] = 5643, - [SMALL_STATE(194)] = 5761, - [SMALL_STATE(195)] = 5875, - [SMALL_STATE(196)] = 5989, - [SMALL_STATE(197)] = 6103, - [SMALL_STATE(198)] = 6217, - [SMALL_STATE(199)] = 6331, - [SMALL_STATE(200)] = 6445, - [SMALL_STATE(201)] = 6559, - [SMALL_STATE(202)] = 6677, - [SMALL_STATE(203)] = 6791, - [SMALL_STATE(204)] = 6905, - [SMALL_STATE(205)] = 7019, - [SMALL_STATE(206)] = 7133, - [SMALL_STATE(207)] = 7247, - [SMALL_STATE(208)] = 7361, - [SMALL_STATE(209)] = 7475, - [SMALL_STATE(210)] = 7589, - [SMALL_STATE(211)] = 7703, - [SMALL_STATE(212)] = 7817, - [SMALL_STATE(213)] = 7931, - [SMALL_STATE(214)] = 8045, - [SMALL_STATE(215)] = 8159, - [SMALL_STATE(216)] = 8273, - [SMALL_STATE(217)] = 8387, - [SMALL_STATE(218)] = 8505, - [SMALL_STATE(219)] = 8619, - [SMALL_STATE(220)] = 8737, - [SMALL_STATE(221)] = 8851, - [SMALL_STATE(222)] = 8965, - [SMALL_STATE(223)] = 9083, - [SMALL_STATE(224)] = 9197, - [SMALL_STATE(225)] = 9311, - [SMALL_STATE(226)] = 9425, - [SMALL_STATE(227)] = 9543, - [SMALL_STATE(228)] = 9657, - [SMALL_STATE(229)] = 9771, - [SMALL_STATE(230)] = 9889, - [SMALL_STATE(231)] = 10003, - [SMALL_STATE(232)] = 10117, - [SMALL_STATE(233)] = 10231, - [SMALL_STATE(234)] = 10345, - [SMALL_STATE(235)] = 10459, - [SMALL_STATE(236)] = 10573, - [SMALL_STATE(237)] = 10691, - [SMALL_STATE(238)] = 10805, - [SMALL_STATE(239)] = 10919, - [SMALL_STATE(240)] = 11035, - [SMALL_STATE(241)] = 11153, - [SMALL_STATE(242)] = 11267, - [SMALL_STATE(243)] = 11385, - [SMALL_STATE(244)] = 11503, - [SMALL_STATE(245)] = 11621, - [SMALL_STATE(246)] = 11739, - [SMALL_STATE(247)] = 11853, - [SMALL_STATE(248)] = 11971, - [SMALL_STATE(249)] = 12089, - [SMALL_STATE(250)] = 12203, - [SMALL_STATE(251)] = 12317, - [SMALL_STATE(252)] = 12435, - [SMALL_STATE(253)] = 12551, - [SMALL_STATE(254)] = 12669, - [SMALL_STATE(255)] = 12787, - [SMALL_STATE(256)] = 12905, - [SMALL_STATE(257)] = 13019, - [SMALL_STATE(258)] = 13133, - [SMALL_STATE(259)] = 13247, - [SMALL_STATE(260)] = 13361, - [SMALL_STATE(261)] = 13475, - [SMALL_STATE(262)] = 13589, - [SMALL_STATE(263)] = 13703, - [SMALL_STATE(264)] = 13817, - [SMALL_STATE(265)] = 13931, - [SMALL_STATE(266)] = 14045, - [SMALL_STATE(267)] = 14163, - [SMALL_STATE(268)] = 14277, - [SMALL_STATE(269)] = 14391, - [SMALL_STATE(270)] = 14505, - [SMALL_STATE(271)] = 14619, - [SMALL_STATE(272)] = 14733, - [SMALL_STATE(273)] = 14847, - [SMALL_STATE(274)] = 14961, - [SMALL_STATE(275)] = 15075, - [SMALL_STATE(276)] = 15189, - [SMALL_STATE(277)] = 15303, - [SMALL_STATE(278)] = 15417, - [SMALL_STATE(279)] = 15535, - [SMALL_STATE(280)] = 15649, - [SMALL_STATE(281)] = 15763, - [SMALL_STATE(282)] = 15877, - [SMALL_STATE(283)] = 15991, - [SMALL_STATE(284)] = 16105, - [SMALL_STATE(285)] = 16219, - [SMALL_STATE(286)] = 16333, - [SMALL_STATE(287)] = 16451, - [SMALL_STATE(288)] = 16565, - [SMALL_STATE(289)] = 16683, - [SMALL_STATE(290)] = 16801, - [SMALL_STATE(291)] = 16915, - [SMALL_STATE(292)] = 17033, - [SMALL_STATE(293)] = 17149, - [SMALL_STATE(294)] = 17267, - [SMALL_STATE(295)] = 17381, - [SMALL_STATE(296)] = 17495, - [SMALL_STATE(297)] = 17609, - [SMALL_STATE(298)] = 17727, - [SMALL_STATE(299)] = 17841, - [SMALL_STATE(300)] = 17959, - [SMALL_STATE(301)] = 18073, - [SMALL_STATE(302)] = 18187, - [SMALL_STATE(303)] = 18301, - [SMALL_STATE(304)] = 18415, - [SMALL_STATE(305)] = 18529, - [SMALL_STATE(306)] = 18643, - [SMALL_STATE(307)] = 18757, - [SMALL_STATE(308)] = 18871, - [SMALL_STATE(309)] = 18989, - [SMALL_STATE(310)] = 19103, - [SMALL_STATE(311)] = 19174, - [SMALL_STATE(312)] = 19279, - [SMALL_STATE(313)] = 19350, - [SMALL_STATE(314)] = 19423, - [SMALL_STATE(315)] = 19494, - [SMALL_STATE(316)] = 19565, - [SMALL_STATE(317)] = 19670, - [SMALL_STATE(318)] = 19741, - [SMALL_STATE(319)] = 19812, - [SMALL_STATE(320)] = 19883, - [SMALL_STATE(321)] = 19966, - [SMALL_STATE(322)] = 20041, - [SMALL_STATE(323)] = 20112, - [SMALL_STATE(324)] = 20183, - [SMALL_STATE(325)] = 20254, - [SMALL_STATE(326)] = 20325, - [SMALL_STATE(327)] = 20398, - [SMALL_STATE(328)] = 20469, - [SMALL_STATE(329)] = 20576, - [SMALL_STATE(330)] = 20647, - [SMALL_STATE(331)] = 20736, - [SMALL_STATE(332)] = 20827, - [SMALL_STATE(333)] = 20920, - [SMALL_STATE(334)] = 21015, - [SMALL_STATE(335)] = 21090, - [SMALL_STATE(336)] = 21177, - [SMALL_STATE(337)] = 21260, - [SMALL_STATE(338)] = 21335, - [SMALL_STATE(339)] = 21418, - [SMALL_STATE(340)] = 21489, - [SMALL_STATE(341)] = 21564, - [SMALL_STATE(342)] = 21635, - [SMALL_STATE(343)] = 21706, - [SMALL_STATE(344)] = 21791, - [SMALL_STATE(345)] = 21866, - [SMALL_STATE(346)] = 21939, - [SMALL_STATE(347)] = 22046, - [SMALL_STATE(348)] = 22117, - [SMALL_STATE(349)] = 22188, - [SMALL_STATE(350)] = 22271, - [SMALL_STATE(351)] = 22342, - [SMALL_STATE(352)] = 22413, - [SMALL_STATE(353)] = 22484, - [SMALL_STATE(354)] = 22555, - [SMALL_STATE(355)] = 22662, - [SMALL_STATE(356)] = 22733, - [SMALL_STATE(357)] = 22804, - [SMALL_STATE(358)] = 22911, - [SMALL_STATE(359)] = 22984, - [SMALL_STATE(360)] = 23067, - [SMALL_STATE(361)] = 23150, - [SMALL_STATE(362)] = 23237, - [SMALL_STATE(363)] = 23332, - [SMALL_STATE(364)] = 23425, - [SMALL_STATE(365)] = 23516, - [SMALL_STATE(366)] = 23605, - [SMALL_STATE(367)] = 23676, - [SMALL_STATE(368)] = 23749, - [SMALL_STATE(369)] = 23822, - [SMALL_STATE(370)] = 23929, - [SMALL_STATE(371)] = 24036, - [SMALL_STATE(372)] = 24107, - [SMALL_STATE(373)] = 24180, - [SMALL_STATE(374)] = 24255, - [SMALL_STATE(375)] = 24370, - [SMALL_STATE(376)] = 24443, - [SMALL_STATE(377)] = 24514, - [SMALL_STATE(378)] = 24587, - [SMALL_STATE(379)] = 24666, - [SMALL_STATE(380)] = 24739, - [SMALL_STATE(381)] = 24812, - [SMALL_STATE(382)] = 24885, - [SMALL_STATE(383)] = 24956, - [SMALL_STATE(384)] = 25027, - [SMALL_STATE(385)] = 25098, - [SMALL_STATE(386)] = 25177, - [SMALL_STATE(387)] = 25252, - [SMALL_STATE(388)] = 25331, - [SMALL_STATE(389)] = 25446, - [SMALL_STATE(390)] = 25525, - [SMALL_STATE(391)] = 25600, - [SMALL_STATE(392)] = 25715, - [SMALL_STATE(393)] = 25800, - [SMALL_STATE(394)] = 25881, - [SMALL_STATE(395)] = 25986, - [SMALL_STATE(396)] = 26091, - [SMALL_STATE(397)] = 26172, - [SMALL_STATE(398)] = 26284, - [SMALL_STATE(399)] = 26396, - [SMALL_STATE(400)] = 26508, - [SMALL_STATE(401)] = 26620, - [SMALL_STATE(402)] = 26732, - [SMALL_STATE(403)] = 26844, - [SMALL_STATE(404)] = 26956, - [SMALL_STATE(405)] = 27068, - [SMALL_STATE(406)] = 27180, - [SMALL_STATE(407)] = 27292, - [SMALL_STATE(408)] = 27404, - [SMALL_STATE(409)] = 27516, - [SMALL_STATE(410)] = 27628, - [SMALL_STATE(411)] = 27740, - [SMALL_STATE(412)] = 27852, - [SMALL_STATE(413)] = 27964, - [SMALL_STATE(414)] = 28076, - [SMALL_STATE(415)] = 28188, - [SMALL_STATE(416)] = 28300, - [SMALL_STATE(417)] = 28412, - [SMALL_STATE(418)] = 28524, - [SMALL_STATE(419)] = 28636, - [SMALL_STATE(420)] = 28748, - [SMALL_STATE(421)] = 28860, - [SMALL_STATE(422)] = 28972, - [SMALL_STATE(423)] = 29084, - [SMALL_STATE(424)] = 29196, - [SMALL_STATE(425)] = 29308, - [SMALL_STATE(426)] = 29420, - [SMALL_STATE(427)] = 29532, - [SMALL_STATE(428)] = 29644, - [SMALL_STATE(429)] = 29756, - [SMALL_STATE(430)] = 29868, - [SMALL_STATE(431)] = 29980, - [SMALL_STATE(432)] = 30092, - [SMALL_STATE(433)] = 30204, - [SMALL_STATE(434)] = 30316, - [SMALL_STATE(435)] = 30428, - [SMALL_STATE(436)] = 30540, - [SMALL_STATE(437)] = 30652, - [SMALL_STATE(438)] = 30764, - [SMALL_STATE(439)] = 30876, - [SMALL_STATE(440)] = 30988, - [SMALL_STATE(441)] = 31100, - [SMALL_STATE(442)] = 31212, - [SMALL_STATE(443)] = 31324, - [SMALL_STATE(444)] = 31436, - [SMALL_STATE(445)] = 31548, - [SMALL_STATE(446)] = 31660, - [SMALL_STATE(447)] = 31772, - [SMALL_STATE(448)] = 31884, - [SMALL_STATE(449)] = 31996, - [SMALL_STATE(450)] = 32108, - [SMALL_STATE(451)] = 32220, - [SMALL_STATE(452)] = 32332, - [SMALL_STATE(453)] = 32444, - [SMALL_STATE(454)] = 32556, - [SMALL_STATE(455)] = 32668, - [SMALL_STATE(456)] = 32780, - [SMALL_STATE(457)] = 32892, - [SMALL_STATE(458)] = 33004, - [SMALL_STATE(459)] = 33116, - [SMALL_STATE(460)] = 33228, - [SMALL_STATE(461)] = 33340, - [SMALL_STATE(462)] = 33452, - [SMALL_STATE(463)] = 33564, - [SMALL_STATE(464)] = 33676, - [SMALL_STATE(465)] = 33788, - [SMALL_STATE(466)] = 33900, - [SMALL_STATE(467)] = 34012, - [SMALL_STATE(468)] = 34124, - [SMALL_STATE(469)] = 34236, - [SMALL_STATE(470)] = 34348, - [SMALL_STATE(471)] = 34460, - [SMALL_STATE(472)] = 34572, - [SMALL_STATE(473)] = 34684, - [SMALL_STATE(474)] = 34796, - [SMALL_STATE(475)] = 34908, - [SMALL_STATE(476)] = 35020, - [SMALL_STATE(477)] = 35132, - [SMALL_STATE(478)] = 35244, - [SMALL_STATE(479)] = 35356, - [SMALL_STATE(480)] = 35468, - [SMALL_STATE(481)] = 35580, - [SMALL_STATE(482)] = 35692, - [SMALL_STATE(483)] = 35804, - [SMALL_STATE(484)] = 35916, - [SMALL_STATE(485)] = 36028, - [SMALL_STATE(486)] = 36140, - [SMALL_STATE(487)] = 36252, - [SMALL_STATE(488)] = 36364, - [SMALL_STATE(489)] = 36476, - [SMALL_STATE(490)] = 36588, - [SMALL_STATE(491)] = 36700, - [SMALL_STATE(492)] = 36812, - [SMALL_STATE(493)] = 36924, - [SMALL_STATE(494)] = 37036, - [SMALL_STATE(495)] = 37148, - [SMALL_STATE(496)] = 37260, - [SMALL_STATE(497)] = 37372, - [SMALL_STATE(498)] = 37484, - [SMALL_STATE(499)] = 37596, - [SMALL_STATE(500)] = 37708, - [SMALL_STATE(501)] = 37820, - [SMALL_STATE(502)] = 37932, - [SMALL_STATE(503)] = 38044, - [SMALL_STATE(504)] = 38156, - [SMALL_STATE(505)] = 38268, - [SMALL_STATE(506)] = 38380, - [SMALL_STATE(507)] = 38492, - [SMALL_STATE(508)] = 38604, - [SMALL_STATE(509)] = 38716, - [SMALL_STATE(510)] = 38828, - [SMALL_STATE(511)] = 38940, - [SMALL_STATE(512)] = 39052, - [SMALL_STATE(513)] = 39164, - [SMALL_STATE(514)] = 39276, - [SMALL_STATE(515)] = 39388, - [SMALL_STATE(516)] = 39500, - [SMALL_STATE(517)] = 39612, - [SMALL_STATE(518)] = 39724, - [SMALL_STATE(519)] = 39836, - [SMALL_STATE(520)] = 39948, - [SMALL_STATE(521)] = 40060, - [SMALL_STATE(522)] = 40172, - [SMALL_STATE(523)] = 40284, - [SMALL_STATE(524)] = 40396, - [SMALL_STATE(525)] = 40508, - [SMALL_STATE(526)] = 40578, - [SMALL_STATE(527)] = 40648, - [SMALL_STATE(528)] = 40718, - [SMALL_STATE(529)] = 40788, - [SMALL_STATE(530)] = 40858, - [SMALL_STATE(531)] = 40928, - [SMALL_STATE(532)] = 40998, - [SMALL_STATE(533)] = 41068, - [SMALL_STATE(534)] = 41180, - [SMALL_STATE(535)] = 41292, - [SMALL_STATE(536)] = 41404, - [SMALL_STATE(537)] = 41516, - [SMALL_STATE(538)] = 41628, - [SMALL_STATE(539)] = 41740, - [SMALL_STATE(540)] = 41852, - [SMALL_STATE(541)] = 41964, - [SMALL_STATE(542)] = 42076, - [SMALL_STATE(543)] = 42188, - [SMALL_STATE(544)] = 42300, - [SMALL_STATE(545)] = 42378, - [SMALL_STATE(546)] = 42490, - [SMALL_STATE(547)] = 42602, - [SMALL_STATE(548)] = 42714, - [SMALL_STATE(549)] = 42826, - [SMALL_STATE(550)] = 42938, - [SMALL_STATE(551)] = 43050, - [SMALL_STATE(552)] = 43162, - [SMALL_STATE(553)] = 43274, - [SMALL_STATE(554)] = 43386, - [SMALL_STATE(555)] = 43498, - [SMALL_STATE(556)] = 43610, - [SMALL_STATE(557)] = 43722, - [SMALL_STATE(558)] = 43834, - [SMALL_STATE(559)] = 43946, - [SMALL_STATE(560)] = 44058, - [SMALL_STATE(561)] = 44170, - [SMALL_STATE(562)] = 44282, - [SMALL_STATE(563)] = 44394, - [SMALL_STATE(564)] = 44506, - [SMALL_STATE(565)] = 44618, - [SMALL_STATE(566)] = 44730, - [SMALL_STATE(567)] = 44842, - [SMALL_STATE(568)] = 44954, - [SMALL_STATE(569)] = 45066, - [SMALL_STATE(570)] = 45178, - [SMALL_STATE(571)] = 45290, - [SMALL_STATE(572)] = 45402, - [SMALL_STATE(573)] = 45514, - [SMALL_STATE(574)] = 45626, - [SMALL_STATE(575)] = 45738, - [SMALL_STATE(576)] = 45850, - [SMALL_STATE(577)] = 45962, - [SMALL_STATE(578)] = 46074, - [SMALL_STATE(579)] = 46186, - [SMALL_STATE(580)] = 46298, - [SMALL_STATE(581)] = 46410, - [SMALL_STATE(582)] = 46522, - [SMALL_STATE(583)] = 46634, - [SMALL_STATE(584)] = 46746, - [SMALL_STATE(585)] = 46858, - [SMALL_STATE(586)] = 46970, - [SMALL_STATE(587)] = 47082, - [SMALL_STATE(588)] = 47194, - [SMALL_STATE(589)] = 47306, - [SMALL_STATE(590)] = 47418, - [SMALL_STATE(591)] = 47496, - [SMALL_STATE(592)] = 47608, - [SMALL_STATE(593)] = 47720, - [SMALL_STATE(594)] = 47832, - [SMALL_STATE(595)] = 47944, - [SMALL_STATE(596)] = 48056, - [SMALL_STATE(597)] = 48168, - [SMALL_STATE(598)] = 48280, - [SMALL_STATE(599)] = 48392, - [SMALL_STATE(600)] = 48504, - [SMALL_STATE(601)] = 48616, - [SMALL_STATE(602)] = 48728, - [SMALL_STATE(603)] = 48840, - [SMALL_STATE(604)] = 48952, - [SMALL_STATE(605)] = 49064, - [SMALL_STATE(606)] = 49176, - [SMALL_STATE(607)] = 49288, - [SMALL_STATE(608)] = 49400, - [SMALL_STATE(609)] = 49512, - [SMALL_STATE(610)] = 49624, - [SMALL_STATE(611)] = 49736, - [SMALL_STATE(612)] = 49848, - [SMALL_STATE(613)] = 49960, - [SMALL_STATE(614)] = 50028, - [SMALL_STATE(615)] = 50106, - [SMALL_STATE(616)] = 50218, - [SMALL_STATE(617)] = 50330, - [SMALL_STATE(618)] = 50442, - [SMALL_STATE(619)] = 50554, - [SMALL_STATE(620)] = 50622, - [SMALL_STATE(621)] = 50734, - [SMALL_STATE(622)] = 50846, - [SMALL_STATE(623)] = 50958, - [SMALL_STATE(624)] = 51070, - [SMALL_STATE(625)] = 51182, - [SMALL_STATE(626)] = 51294, - [SMALL_STATE(627)] = 51406, - [SMALL_STATE(628)] = 51518, - [SMALL_STATE(629)] = 51630, - [SMALL_STATE(630)] = 51742, - [SMALL_STATE(631)] = 51810, - [SMALL_STATE(632)] = 51878, - [SMALL_STATE(633)] = 51990, - [SMALL_STATE(634)] = 52102, - [SMALL_STATE(635)] = 52214, - [SMALL_STATE(636)] = 52326, - [SMALL_STATE(637)] = 52438, - [SMALL_STATE(638)] = 52550, - [SMALL_STATE(639)] = 52662, - [SMALL_STATE(640)] = 52732, - [SMALL_STATE(641)] = 52844, - [SMALL_STATE(642)] = 52956, - [SMALL_STATE(643)] = 53068, - [SMALL_STATE(644)] = 53180, - [SMALL_STATE(645)] = 53292, - [SMALL_STATE(646)] = 53360, - [SMALL_STATE(647)] = 53472, - [SMALL_STATE(648)] = 53584, - [SMALL_STATE(649)] = 53696, - [SMALL_STATE(650)] = 53808, - [SMALL_STATE(651)] = 53876, - [SMALL_STATE(652)] = 53944, - [SMALL_STATE(653)] = 54056, - [SMALL_STATE(654)] = 54168, - [SMALL_STATE(655)] = 54280, - [SMALL_STATE(656)] = 54392, - [SMALL_STATE(657)] = 54504, - [SMALL_STATE(658)] = 54616, - [SMALL_STATE(659)] = 54728, - [SMALL_STATE(660)] = 54840, - [SMALL_STATE(661)] = 54952, - [SMALL_STATE(662)] = 55064, - [SMALL_STATE(663)] = 55176, - [SMALL_STATE(664)] = 55288, - [SMALL_STATE(665)] = 55400, - [SMALL_STATE(666)] = 55512, - [SMALL_STATE(667)] = 55624, - [SMALL_STATE(668)] = 55736, - [SMALL_STATE(669)] = 55848, - [SMALL_STATE(670)] = 55960, - [SMALL_STATE(671)] = 56028, - [SMALL_STATE(672)] = 56096, - [SMALL_STATE(673)] = 56164, - [SMALL_STATE(674)] = 56232, - [SMALL_STATE(675)] = 56344, - [SMALL_STATE(676)] = 56456, - [SMALL_STATE(677)] = 56524, - [SMALL_STATE(678)] = 56636, - [SMALL_STATE(679)] = 56748, - [SMALL_STATE(680)] = 56860, - [SMALL_STATE(681)] = 56972, - [SMALL_STATE(682)] = 57084, - [SMALL_STATE(683)] = 57196, - [SMALL_STATE(684)] = 57308, - [SMALL_STATE(685)] = 57420, - [SMALL_STATE(686)] = 57532, - [SMALL_STATE(687)] = 57644, - [SMALL_STATE(688)] = 57756, - [SMALL_STATE(689)] = 57868, - [SMALL_STATE(690)] = 57980, - [SMALL_STATE(691)] = 58092, - [SMALL_STATE(692)] = 58204, - [SMALL_STATE(693)] = 58316, - [SMALL_STATE(694)] = 58428, - [SMALL_STATE(695)] = 58540, - [SMALL_STATE(696)] = 58652, - [SMALL_STATE(697)] = 58764, - [SMALL_STATE(698)] = 58876, - [SMALL_STATE(699)] = 58988, - [SMALL_STATE(700)] = 59100, - [SMALL_STATE(701)] = 59212, - [SMALL_STATE(702)] = 59324, - [SMALL_STATE(703)] = 59436, - [SMALL_STATE(704)] = 59548, - [SMALL_STATE(705)] = 59660, - [SMALL_STATE(706)] = 59772, - [SMALL_STATE(707)] = 59884, - [SMALL_STATE(708)] = 59996, - [SMALL_STATE(709)] = 60108, - [SMALL_STATE(710)] = 60176, - [SMALL_STATE(711)] = 60288, - [SMALL_STATE(712)] = 60400, - [SMALL_STATE(713)] = 60512, - [SMALL_STATE(714)] = 60580, - [SMALL_STATE(715)] = 60692, - [SMALL_STATE(716)] = 60804, - [SMALL_STATE(717)] = 60916, - [SMALL_STATE(718)] = 61028, - [SMALL_STATE(719)] = 61140, - [SMALL_STATE(720)] = 61252, - [SMALL_STATE(721)] = 61364, - [SMALL_STATE(722)] = 61476, - [SMALL_STATE(723)] = 61588, - [SMALL_STATE(724)] = 61700, - [SMALL_STATE(725)] = 61812, - [SMALL_STATE(726)] = 61880, - [SMALL_STATE(727)] = 61948, - [SMALL_STATE(728)] = 62060, - [SMALL_STATE(729)] = 62172, - [SMALL_STATE(730)] = 62284, - [SMALL_STATE(731)] = 62396, - [SMALL_STATE(732)] = 62508, - [SMALL_STATE(733)] = 62620, - [SMALL_STATE(734)] = 62698, - [SMALL_STATE(735)] = 62768, - [SMALL_STATE(736)] = 62880, - [SMALL_STATE(737)] = 62992, - [SMALL_STATE(738)] = 63104, - [SMALL_STATE(739)] = 63216, - [SMALL_STATE(740)] = 63284, - [SMALL_STATE(741)] = 63396, - [SMALL_STATE(742)] = 63464, - [SMALL_STATE(743)] = 63532, - [SMALL_STATE(744)] = 63644, - [SMALL_STATE(745)] = 63756, - [SMALL_STATE(746)] = 63868, - [SMALL_STATE(747)] = 63980, - [SMALL_STATE(748)] = 64092, - [SMALL_STATE(749)] = 64204, - [SMALL_STATE(750)] = 64316, - [SMALL_STATE(751)] = 64428, - [SMALL_STATE(752)] = 64540, - [SMALL_STATE(753)] = 64652, - [SMALL_STATE(754)] = 64764, - [SMALL_STATE(755)] = 64876, - [SMALL_STATE(756)] = 64988, - [SMALL_STATE(757)] = 65100, - [SMALL_STATE(758)] = 65212, - [SMALL_STATE(759)] = 65324, - [SMALL_STATE(760)] = 65436, - [SMALL_STATE(761)] = 65548, - [SMALL_STATE(762)] = 65660, - [SMALL_STATE(763)] = 65772, - [SMALL_STATE(764)] = 65884, - [SMALL_STATE(765)] = 65996, - [SMALL_STATE(766)] = 66108, - [SMALL_STATE(767)] = 66220, - [SMALL_STATE(768)] = 66332, - [SMALL_STATE(769)] = 66444, - [SMALL_STATE(770)] = 66556, - [SMALL_STATE(771)] = 66624, - [SMALL_STATE(772)] = 66736, - [SMALL_STATE(773)] = 66848, - [SMALL_STATE(774)] = 66916, - [SMALL_STATE(775)] = 67028, - [SMALL_STATE(776)] = 67096, - [SMALL_STATE(777)] = 67208, - [SMALL_STATE(778)] = 67320, - [SMALL_STATE(779)] = 67388, - [SMALL_STATE(780)] = 67456, - [SMALL_STATE(781)] = 67568, - [SMALL_STATE(782)] = 67680, - [SMALL_STATE(783)] = 67792, - [SMALL_STATE(784)] = 67904, - [SMALL_STATE(785)] = 68016, - [SMALL_STATE(786)] = 68128, - [SMALL_STATE(787)] = 68240, - [SMALL_STATE(788)] = 68352, - [SMALL_STATE(789)] = 68464, - [SMALL_STATE(790)] = 68576, - [SMALL_STATE(791)] = 68688, - [SMALL_STATE(792)] = 68800, - [SMALL_STATE(793)] = 68912, - [SMALL_STATE(794)] = 69024, - [SMALL_STATE(795)] = 69136, - [SMALL_STATE(796)] = 69248, - [SMALL_STATE(797)] = 69360, - [SMALL_STATE(798)] = 69472, - [SMALL_STATE(799)] = 69584, - [SMALL_STATE(800)] = 69696, - [SMALL_STATE(801)] = 69808, - [SMALL_STATE(802)] = 69920, - [SMALL_STATE(803)] = 70032, - [SMALL_STATE(804)] = 70144, - [SMALL_STATE(805)] = 70256, - [SMALL_STATE(806)] = 70368, - [SMALL_STATE(807)] = 70480, - [SMALL_STATE(808)] = 70592, - [SMALL_STATE(809)] = 70704, - [SMALL_STATE(810)] = 70816, - [SMALL_STATE(811)] = 70928, - [SMALL_STATE(812)] = 71040, - [SMALL_STATE(813)] = 71152, - [SMALL_STATE(814)] = 71264, - [SMALL_STATE(815)] = 71376, - [SMALL_STATE(816)] = 71488, - [SMALL_STATE(817)] = 71600, - [SMALL_STATE(818)] = 71712, - [SMALL_STATE(819)] = 71824, - [SMALL_STATE(820)] = 71936, - [SMALL_STATE(821)] = 72048, - [SMALL_STATE(822)] = 72160, - [SMALL_STATE(823)] = 72272, - [SMALL_STATE(824)] = 72384, - [SMALL_STATE(825)] = 72496, - [SMALL_STATE(826)] = 72608, - [SMALL_STATE(827)] = 72720, - [SMALL_STATE(828)] = 72832, - [SMALL_STATE(829)] = 72944, - [SMALL_STATE(830)] = 73056, - [SMALL_STATE(831)] = 73168, - [SMALL_STATE(832)] = 73280, - [SMALL_STATE(833)] = 73392, - [SMALL_STATE(834)] = 73504, - [SMALL_STATE(835)] = 73616, - [SMALL_STATE(836)] = 73728, - [SMALL_STATE(837)] = 73840, - [SMALL_STATE(838)] = 73952, - [SMALL_STATE(839)] = 74064, - [SMALL_STATE(840)] = 74176, - [SMALL_STATE(841)] = 74288, - [SMALL_STATE(842)] = 74400, - [SMALL_STATE(843)] = 74512, - [SMALL_STATE(844)] = 74624, - [SMALL_STATE(845)] = 74736, - [SMALL_STATE(846)] = 74848, - [SMALL_STATE(847)] = 74960, - [SMALL_STATE(848)] = 75072, - [SMALL_STATE(849)] = 75184, - [SMALL_STATE(850)] = 75296, - [SMALL_STATE(851)] = 75408, - [SMALL_STATE(852)] = 75520, - [SMALL_STATE(853)] = 75632, - [SMALL_STATE(854)] = 75744, - [SMALL_STATE(855)] = 75856, - [SMALL_STATE(856)] = 75968, - [SMALL_STATE(857)] = 76080, - [SMALL_STATE(858)] = 76192, - [SMALL_STATE(859)] = 76304, - [SMALL_STATE(860)] = 76416, - [SMALL_STATE(861)] = 76528, - [SMALL_STATE(862)] = 76640, - [SMALL_STATE(863)] = 76752, - [SMALL_STATE(864)] = 76864, - [SMALL_STATE(865)] = 76976, - [SMALL_STATE(866)] = 77088, - [SMALL_STATE(867)] = 77200, - [SMALL_STATE(868)] = 77312, - [SMALL_STATE(869)] = 77424, - [SMALL_STATE(870)] = 77536, - [SMALL_STATE(871)] = 77648, - [SMALL_STATE(872)] = 77760, - [SMALL_STATE(873)] = 77872, - [SMALL_STATE(874)] = 77984, - [SMALL_STATE(875)] = 78096, - [SMALL_STATE(876)] = 78208, - [SMALL_STATE(877)] = 78320, - [SMALL_STATE(878)] = 78432, - [SMALL_STATE(879)] = 78544, - [SMALL_STATE(880)] = 78656, - [SMALL_STATE(881)] = 78768, - [SMALL_STATE(882)] = 78880, - [SMALL_STATE(883)] = 78992, - [SMALL_STATE(884)] = 79104, - [SMALL_STATE(885)] = 79216, - [SMALL_STATE(886)] = 79328, - [SMALL_STATE(887)] = 79440, - [SMALL_STATE(888)] = 79552, - [SMALL_STATE(889)] = 79664, - [SMALL_STATE(890)] = 79776, - [SMALL_STATE(891)] = 79888, - [SMALL_STATE(892)] = 80000, - [SMALL_STATE(893)] = 80112, - [SMALL_STATE(894)] = 80224, - [SMALL_STATE(895)] = 80336, - [SMALL_STATE(896)] = 80448, - [SMALL_STATE(897)] = 80560, - [SMALL_STATE(898)] = 80672, - [SMALL_STATE(899)] = 80784, - [SMALL_STATE(900)] = 80896, - [SMALL_STATE(901)] = 81008, - [SMALL_STATE(902)] = 81120, - [SMALL_STATE(903)] = 81232, - [SMALL_STATE(904)] = 81344, - [SMALL_STATE(905)] = 81456, - [SMALL_STATE(906)] = 81568, - [SMALL_STATE(907)] = 81680, - [SMALL_STATE(908)] = 81792, - [SMALL_STATE(909)] = 81904, - [SMALL_STATE(910)] = 82016, - [SMALL_STATE(911)] = 82128, - [SMALL_STATE(912)] = 82240, - [SMALL_STATE(913)] = 82307, - [SMALL_STATE(914)] = 82374, - [SMALL_STATE(915)] = 82441, - [SMALL_STATE(916)] = 82508, - [SMALL_STATE(917)] = 82575, - [SMALL_STATE(918)] = 82646, - [SMALL_STATE(919)] = 82713, - [SMALL_STATE(920)] = 82784, - [SMALL_STATE(921)] = 82851, - [SMALL_STATE(922)] = 82918, - [SMALL_STATE(923)] = 82989, - [SMALL_STATE(924)] = 83062, - [SMALL_STATE(925)] = 83135, - [SMALL_STATE(926)] = 83202, - [SMALL_STATE(927)] = 83269, - [SMALL_STATE(928)] = 83342, - [SMALL_STATE(929)] = 83413, - [SMALL_STATE(930)] = 83480, - [SMALL_STATE(931)] = 83553, - [SMALL_STATE(932)] = 83620, - [SMALL_STATE(933)] = 83687, - [SMALL_STATE(934)] = 83754, - [SMALL_STATE(935)] = 83821, - [SMALL_STATE(936)] = 83888, - [SMALL_STATE(937)] = 83955, - [SMALL_STATE(938)] = 84022, - [SMALL_STATE(939)] = 84089, - [SMALL_STATE(940)] = 84156, - [SMALL_STATE(941)] = 84223, - [SMALL_STATE(942)] = 84290, - [SMALL_STATE(943)] = 84357, - [SMALL_STATE(944)] = 84424, - [SMALL_STATE(945)] = 84491, - [SMALL_STATE(946)] = 84558, - [SMALL_STATE(947)] = 84625, - [SMALL_STATE(948)] = 84692, - [SMALL_STATE(949)] = 84759, - [SMALL_STATE(950)] = 84826, - [SMALL_STATE(951)] = 84893, - [SMALL_STATE(952)] = 84960, - [SMALL_STATE(953)] = 85027, - [SMALL_STATE(954)] = 85094, - [SMALL_STATE(955)] = 85161, - [SMALL_STATE(956)] = 85228, - [SMALL_STATE(957)] = 85295, - [SMALL_STATE(958)] = 85362, - [SMALL_STATE(959)] = 85429, - [SMALL_STATE(960)] = 85496, - [SMALL_STATE(961)] = 85563, - [SMALL_STATE(962)] = 85630, - [SMALL_STATE(963)] = 85697, - [SMALL_STATE(964)] = 85764, - [SMALL_STATE(965)] = 85831, - [SMALL_STATE(966)] = 85898, - [SMALL_STATE(967)] = 85965, - [SMALL_STATE(968)] = 86032, - [SMALL_STATE(969)] = 86099, - [SMALL_STATE(970)] = 86166, - [SMALL_STATE(971)] = 86233, - [SMALL_STATE(972)] = 86300, - [SMALL_STATE(973)] = 86367, - [SMALL_STATE(974)] = 86434, - [SMALL_STATE(975)] = 86501, - [SMALL_STATE(976)] = 86568, - [SMALL_STATE(977)] = 86635, - [SMALL_STATE(978)] = 86702, - [SMALL_STATE(979)] = 86769, - [SMALL_STATE(980)] = 86836, - [SMALL_STATE(981)] = 86903, - [SMALL_STATE(982)] = 86976, - [SMALL_STATE(983)] = 87043, - [SMALL_STATE(984)] = 87110, - [SMALL_STATE(985)] = 87177, - [SMALL_STATE(986)] = 87244, - [SMALL_STATE(987)] = 87311, - [SMALL_STATE(988)] = 87378, - [SMALL_STATE(989)] = 87445, - [SMALL_STATE(990)] = 87512, - [SMALL_STATE(991)] = 87579, - [SMALL_STATE(992)] = 87646, - [SMALL_STATE(993)] = 87713, - [SMALL_STATE(994)] = 87780, - [SMALL_STATE(995)] = 87847, - [SMALL_STATE(996)] = 87914, - [SMALL_STATE(997)] = 87981, - [SMALL_STATE(998)] = 88048, - [SMALL_STATE(999)] = 88115, - [SMALL_STATE(1000)] = 88182, - [SMALL_STATE(1001)] = 88249, - [SMALL_STATE(1002)] = 88316, - [SMALL_STATE(1003)] = 88383, - [SMALL_STATE(1004)] = 88450, - [SMALL_STATE(1005)] = 88517, - [SMALL_STATE(1006)] = 88584, - [SMALL_STATE(1007)] = 88651, - [SMALL_STATE(1008)] = 88718, - [SMALL_STATE(1009)] = 88785, - [SMALL_STATE(1010)] = 88858, - [SMALL_STATE(1011)] = 88925, - [SMALL_STATE(1012)] = 88992, - [SMALL_STATE(1013)] = 89059, - [SMALL_STATE(1014)] = 89126, - [SMALL_STATE(1015)] = 89193, - [SMALL_STATE(1016)] = 89260, - [SMALL_STATE(1017)] = 89327, - [SMALL_STATE(1018)] = 89394, - [SMALL_STATE(1019)] = 89461, - [SMALL_STATE(1020)] = 89528, - [SMALL_STATE(1021)] = 89595, - [SMALL_STATE(1022)] = 89662, - [SMALL_STATE(1023)] = 89731, - [SMALL_STATE(1024)] = 89806, - [SMALL_STATE(1025)] = 89875, - [SMALL_STATE(1026)] = 89944, - [SMALL_STATE(1027)] = 90005, - [SMALL_STATE(1028)] = 90082, - [SMALL_STATE(1029)] = 90145, - [SMALL_STATE(1030)] = 90210, - [SMALL_STATE(1031)] = 90275, - [SMALL_STATE(1032)] = 90338, - [SMALL_STATE(1033)] = 90399, - [SMALL_STATE(1034)] = 90460, - [SMALL_STATE(1035)] = 90521, - [SMALL_STATE(1036)] = 90584, - [SMALL_STATE(1037)] = 90645, - [SMALL_STATE(1038)] = 90706, - [SMALL_STATE(1039)] = 90767, - [SMALL_STATE(1040)] = 90830, - [SMALL_STATE(1041)] = 90893, - [SMALL_STATE(1042)] = 90954, - [SMALL_STATE(1043)] = 91015, - [SMALL_STATE(1044)] = 91088, - [SMALL_STATE(1045)] = 91183, - [SMALL_STATE(1046)] = 91280, - [SMALL_STATE(1047)] = 91341, - [SMALL_STATE(1048)] = 91414, - [SMALL_STATE(1049)] = 91477, - [SMALL_STATE(1050)] = 91562, - [SMALL_STATE(1051)] = 91645, - [SMALL_STATE(1052)] = 91726, - [SMALL_STATE(1053)] = 91805, - [SMALL_STATE(1054)] = 91866, - [SMALL_STATE(1055)] = 91941, - [SMALL_STATE(1056)] = 92004, - [SMALL_STATE(1057)] = 92101, - [SMALL_STATE(1058)] = 92198, - [SMALL_STATE(1059)] = 92269, - [SMALL_STATE(1060)] = 92330, - [SMALL_STATE(1061)] = 92395, - [SMALL_STATE(1062)] = 92468, - [SMALL_STATE(1063)] = 92563, - [SMALL_STATE(1064)] = 92624, - [SMALL_STATE(1065)] = 92685, - [SMALL_STATE(1066)] = 92754, - [SMALL_STATE(1067)] = 92823, - [SMALL_STATE(1068)] = 92888, - [SMALL_STATE(1069)] = 92949, - [SMALL_STATE(1070)] = 93007, - [SMALL_STATE(1071)] = 93065, - [SMALL_STATE(1072)] = 93125, - [SMALL_STATE(1073)] = 93185, - [SMALL_STATE(1074)] = 93243, - [SMALL_STATE(1075)] = 93303, - [SMALL_STATE(1076)] = 93371, - [SMALL_STATE(1077)] = 93439, - [SMALL_STATE(1078)] = 93497, - [SMALL_STATE(1079)] = 93555, - [SMALL_STATE(1080)] = 93613, - [SMALL_STATE(1081)] = 93671, - [SMALL_STATE(1082)] = 93729, - [SMALL_STATE(1083)] = 93787, - [SMALL_STATE(1084)] = 93847, - [SMALL_STATE(1085)] = 93905, - [SMALL_STATE(1086)] = 93963, - [SMALL_STATE(1087)] = 94021, - [SMALL_STATE(1088)] = 94079, - [SMALL_STATE(1089)] = 94139, - [SMALL_STATE(1090)] = 94202, - [SMALL_STATE(1091)] = 94269, - [SMALL_STATE(1092)] = 94326, - [SMALL_STATE(1093)] = 94389, - [SMALL_STATE(1094)] = 94446, - [SMALL_STATE(1095)] = 94503, - [SMALL_STATE(1096)] = 94568, - [SMALL_STATE(1097)] = 94625, - [SMALL_STATE(1098)] = 94682, - [SMALL_STATE(1099)] = 94739, - [SMALL_STATE(1100)] = 94796, - [SMALL_STATE(1101)] = 94861, - [SMALL_STATE(1102)] = 94918, - [SMALL_STATE(1103)] = 94975, - [SMALL_STATE(1104)] = 95032, - [SMALL_STATE(1105)] = 95089, - [SMALL_STATE(1106)] = 95146, - [SMALL_STATE(1107)] = 95203, - [SMALL_STATE(1108)] = 95260, - [SMALL_STATE(1109)] = 95325, - [SMALL_STATE(1110)] = 95382, - [SMALL_STATE(1111)] = 95439, - [SMALL_STATE(1112)] = 95496, - [SMALL_STATE(1113)] = 95553, - [SMALL_STATE(1114)] = 95610, - [SMALL_STATE(1115)] = 95675, - [SMALL_STATE(1116)] = 95732, - [SMALL_STATE(1117)] = 95789, - [SMALL_STATE(1118)] = 95846, - [SMALL_STATE(1119)] = 95903, - [SMALL_STATE(1120)] = 95968, - [SMALL_STATE(1121)] = 96025, - [SMALL_STATE(1122)] = 96082, - [SMALL_STATE(1123)] = 96139, - [SMALL_STATE(1124)] = 96196, - [SMALL_STATE(1125)] = 96253, - [SMALL_STATE(1126)] = 96310, - [SMALL_STATE(1127)] = 96375, - [SMALL_STATE(1128)] = 96432, - [SMALL_STATE(1129)] = 96489, - [SMALL_STATE(1130)] = 96554, - [SMALL_STATE(1131)] = 96619, - [SMALL_STATE(1132)] = 96676, - [SMALL_STATE(1133)] = 96733, - [SMALL_STATE(1134)] = 96790, - [SMALL_STATE(1135)] = 96847, - [SMALL_STATE(1136)] = 96904, - [SMALL_STATE(1137)] = 96961, - [SMALL_STATE(1138)] = 97018, - [SMALL_STATE(1139)] = 97075, - [SMALL_STATE(1140)] = 97132, - [SMALL_STATE(1141)] = 97189, - [SMALL_STATE(1142)] = 97246, - [SMALL_STATE(1143)] = 97303, - [SMALL_STATE(1144)] = 97366, - [SMALL_STATE(1145)] = 97433, - [SMALL_STATE(1146)] = 97490, - [SMALL_STATE(1147)] = 97547, - [SMALL_STATE(1148)] = 97604, - [SMALL_STATE(1149)] = 97661, - [SMALL_STATE(1150)] = 97718, - [SMALL_STATE(1151)] = 97779, - [SMALL_STATE(1152)] = 97840, - [SMALL_STATE(1153)] = 97897, - [SMALL_STATE(1154)] = 97954, - [SMALL_STATE(1155)] = 98015, - [SMALL_STATE(1156)] = 98076, - [SMALL_STATE(1157)] = 98137, - [SMALL_STATE(1158)] = 98199, - [SMALL_STATE(1159)] = 98265, - [SMALL_STATE(1160)] = 98319, - [SMALL_STATE(1161)] = 98373, - [SMALL_STATE(1162)] = 98427, - [SMALL_STATE(1163)] = 98481, - [SMALL_STATE(1164)] = 98535, - [SMALL_STATE(1165)] = 98597, - [SMALL_STATE(1166)] = 98651, - [SMALL_STATE(1167)] = 98705, - [SMALL_STATE(1168)] = 98759, - [SMALL_STATE(1169)] = 98825, - [SMALL_STATE(1170)] = 98876, - [SMALL_STATE(1171)] = 98941, - [SMALL_STATE(1172)] = 99000, - [SMALL_STATE(1173)] = 99051, - [SMALL_STATE(1174)] = 99104, - [SMALL_STATE(1175)] = 99169, - [SMALL_STATE(1176)] = 99234, - [SMALL_STATE(1177)] = 99285, - [SMALL_STATE(1178)] = 99344, - [SMALL_STATE(1179)] = 99395, - [SMALL_STATE(1180)] = 99454, - [SMALL_STATE(1181)] = 99519, - [SMALL_STATE(1182)] = 99570, - [SMALL_STATE(1183)] = 99626, - [SMALL_STATE(1184)] = 99712, - [SMALL_STATE(1185)] = 99770, - [SMALL_STATE(1186)] = 99828, - [SMALL_STATE(1187)] = 99884, - [SMALL_STATE(1188)] = 99942, - [SMALL_STATE(1189)] = 99998, - [SMALL_STATE(1190)] = 100054, - [SMALL_STATE(1191)] = 100106, - [SMALL_STATE(1192)] = 100158, - [SMALL_STATE(1193)] = 100210, - [SMALL_STATE(1194)] = 100262, - [SMALL_STATE(1195)] = 100350, - [SMALL_STATE(1196)] = 100438, - [SMALL_STATE(1197)] = 100498, - [SMALL_STATE(1198)] = 100556, - [SMALL_STATE(1199)] = 100612, - [SMALL_STATE(1200)] = 100666, - [SMALL_STATE(1201)] = 100716, - [SMALL_STATE(1202)] = 100774, - [SMALL_STATE(1203)] = 100828, - [SMALL_STATE(1204)] = 100916, - [SMALL_STATE(1205)] = 100974, - [SMALL_STATE(1206)] = 101024, - [SMALL_STATE(1207)] = 101074, - [SMALL_STATE(1208)] = 101132, - [SMALL_STATE(1209)] = 101182, - [SMALL_STATE(1210)] = 101248, - [SMALL_STATE(1211)] = 101306, - [SMALL_STATE(1212)] = 101356, - [SMALL_STATE(1213)] = 101414, - [SMALL_STATE(1214)] = 101464, - [SMALL_STATE(1215)] = 101534, - [SMALL_STATE(1216)] = 101606, - [SMALL_STATE(1217)] = 101680, - [SMALL_STATE(1218)] = 101738, - [SMALL_STATE(1219)] = 101800, - [SMALL_STATE(1220)] = 101876, - [SMALL_STATE(1221)] = 101928, - [SMALL_STATE(1222)] = 101988, - [SMALL_STATE(1223)] = 102050, - [SMALL_STATE(1224)] = 102108, - [SMALL_STATE(1225)] = 102166, - [SMALL_STATE(1226)] = 102224, - [SMALL_STATE(1227)] = 102286, - [SMALL_STATE(1228)] = 102336, - [SMALL_STATE(1229)] = 102398, - [SMALL_STATE(1230)] = 102484, - [SMALL_STATE(1231)] = 102542, - [SMALL_STATE(1232)] = 102600, - [SMALL_STATE(1233)] = 102647, - [SMALL_STATE(1234)] = 102696, - [SMALL_STATE(1235)] = 102743, - [SMALL_STATE(1236)] = 102790, - [SMALL_STATE(1237)] = 102847, - [SMALL_STATE(1238)] = 102894, - [SMALL_STATE(1239)] = 102941, - [SMALL_STATE(1240)] = 102988, - [SMALL_STATE(1241)] = 103035, - [SMALL_STATE(1242)] = 103092, - [SMALL_STATE(1243)] = 103139, - [SMALL_STATE(1244)] = 103188, - [SMALL_STATE(1245)] = 103235, - [SMALL_STATE(1246)] = 103282, - [SMALL_STATE(1247)] = 103329, - [SMALL_STATE(1248)] = 103380, - [SMALL_STATE(1249)] = 103427, - [SMALL_STATE(1250)] = 103474, - [SMALL_STATE(1251)] = 103521, - [SMALL_STATE(1252)] = 103568, - [SMALL_STATE(1253)] = 103615, - [SMALL_STATE(1254)] = 103662, - [SMALL_STATE(1255)] = 103709, - [SMALL_STATE(1256)] = 103756, - [SMALL_STATE(1257)] = 103803, - [SMALL_STATE(1258)] = 103850, - [SMALL_STATE(1259)] = 103897, - [SMALL_STATE(1260)] = 103944, - [SMALL_STATE(1261)] = 103991, - [SMALL_STATE(1262)] = 104044, - [SMALL_STATE(1263)] = 104097, - [SMALL_STATE(1264)] = 104146, - [SMALL_STATE(1265)] = 104193, - [SMALL_STATE(1266)] = 104240, - [SMALL_STATE(1267)] = 104287, - [SMALL_STATE(1268)] = 104334, - [SMALL_STATE(1269)] = 104381, - [SMALL_STATE(1270)] = 104428, - [SMALL_STATE(1271)] = 104475, - [SMALL_STATE(1272)] = 104522, - [SMALL_STATE(1273)] = 104569, - [SMALL_STATE(1274)] = 104618, - [SMALL_STATE(1275)] = 104665, - [SMALL_STATE(1276)] = 104712, - [SMALL_STATE(1277)] = 104759, - [SMALL_STATE(1278)] = 104806, - [SMALL_STATE(1279)] = 104853, - [SMALL_STATE(1280)] = 104902, - [SMALL_STATE(1281)] = 104949, - [SMALL_STATE(1282)] = 104996, - [SMALL_STATE(1283)] = 105053, - [SMALL_STATE(1284)] = 105106, - [SMALL_STATE(1285)] = 105155, - [SMALL_STATE(1286)] = 105202, - [SMALL_STATE(1287)] = 105249, - [SMALL_STATE(1288)] = 105296, - [SMALL_STATE(1289)] = 105343, - [SMALL_STATE(1290)] = 105390, - [SMALL_STATE(1291)] = 105441, - [SMALL_STATE(1292)] = 105488, - [SMALL_STATE(1293)] = 105537, - [SMALL_STATE(1294)] = 105584, - [SMALL_STATE(1295)] = 105633, - [SMALL_STATE(1296)] = 105680, - [SMALL_STATE(1297)] = 105729, - [SMALL_STATE(1298)] = 105778, - [SMALL_STATE(1299)] = 105825, - [SMALL_STATE(1300)] = 105872, - [SMALL_STATE(1301)] = 105923, - [SMALL_STATE(1302)] = 105970, - [SMALL_STATE(1303)] = 106019, - [SMALL_STATE(1304)] = 106078, - [SMALL_STATE(1305)] = 106127, - [SMALL_STATE(1306)] = 106174, - [SMALL_STATE(1307)] = 106223, - [SMALL_STATE(1308)] = 106280, - [SMALL_STATE(1309)] = 106327, - [SMALL_STATE(1310)] = 106374, - [SMALL_STATE(1311)] = 106431, - [SMALL_STATE(1312)] = 106478, - [SMALL_STATE(1313)] = 106535, - [SMALL_STATE(1314)] = 106582, - [SMALL_STATE(1315)] = 106639, - [SMALL_STATE(1316)] = 106686, - [SMALL_STATE(1317)] = 106735, - [SMALL_STATE(1318)] = 106782, - [SMALL_STATE(1319)] = 106839, - [SMALL_STATE(1320)] = 106886, - [SMALL_STATE(1321)] = 106933, - [SMALL_STATE(1322)] = 106980, - [SMALL_STATE(1323)] = 107031, - [SMALL_STATE(1324)] = 107082, - [SMALL_STATE(1325)] = 107128, - [SMALL_STATE(1326)] = 107184, - [SMALL_STATE(1327)] = 107230, - [SMALL_STATE(1328)] = 107282, - [SMALL_STATE(1329)] = 107328, - [SMALL_STATE(1330)] = 107374, - [SMALL_STATE(1331)] = 107420, - [SMALL_STATE(1332)] = 107466, - [SMALL_STATE(1333)] = 107512, - [SMALL_STATE(1334)] = 107558, - [SMALL_STATE(1335)] = 107604, - [SMALL_STATE(1336)] = 107650, - [SMALL_STATE(1337)] = 107696, - [SMALL_STATE(1338)] = 107742, - [SMALL_STATE(1339)] = 107796, - [SMALL_STATE(1340)] = 107842, - [SMALL_STATE(1341)] = 107888, - [SMALL_STATE(1342)] = 107934, - [SMALL_STATE(1343)] = 107980, - [SMALL_STATE(1344)] = 108034, - [SMALL_STATE(1345)] = 108080, - [SMALL_STATE(1346)] = 108126, - [SMALL_STATE(1347)] = 108172, - [SMALL_STATE(1348)] = 108218, - [SMALL_STATE(1349)] = 108264, - [SMALL_STATE(1350)] = 108310, - [SMALL_STATE(1351)] = 108356, - [SMALL_STATE(1352)] = 108416, - [SMALL_STATE(1353)] = 108462, - [SMALL_STATE(1354)] = 108508, - [SMALL_STATE(1355)] = 108554, - [SMALL_STATE(1356)] = 108600, - [SMALL_STATE(1357)] = 108646, - [SMALL_STATE(1358)] = 108702, - [SMALL_STATE(1359)] = 108750, - [SMALL_STATE(1360)] = 108796, - [SMALL_STATE(1361)] = 108842, - [SMALL_STATE(1362)] = 108888, - [SMALL_STATE(1363)] = 108944, - [SMALL_STATE(1364)] = 108990, - [SMALL_STATE(1365)] = 109036, - [SMALL_STATE(1366)] = 109086, - [SMALL_STATE(1367)] = 109132, - [SMALL_STATE(1368)] = 109178, - [SMALL_STATE(1369)] = 109238, - [SMALL_STATE(1370)] = 109284, - [SMALL_STATE(1371)] = 109330, - [SMALL_STATE(1372)] = 109382, - [SMALL_STATE(1373)] = 109432, - [SMALL_STATE(1374)] = 109478, - [SMALL_STATE(1375)] = 109564, - [SMALL_STATE(1376)] = 109610, - [SMALL_STATE(1377)] = 109666, - [SMALL_STATE(1378)] = 109712, - [SMALL_STATE(1379)] = 109758, - [SMALL_STATE(1380)] = 109804, - [SMALL_STATE(1381)] = 109850, - [SMALL_STATE(1382)] = 109896, - [SMALL_STATE(1383)] = 109942, - [SMALL_STATE(1384)] = 109988, - [SMALL_STATE(1385)] = 110034, - [SMALL_STATE(1386)] = 110080, - [SMALL_STATE(1387)] = 110132, - [SMALL_STATE(1388)] = 110184, - [SMALL_STATE(1389)] = 110230, - [SMALL_STATE(1390)] = 110282, - [SMALL_STATE(1391)] = 110336, - [SMALL_STATE(1392)] = 110382, - [SMALL_STATE(1393)] = 110428, - [SMALL_STATE(1394)] = 110512, - [SMALL_STATE(1395)] = 110558, - [SMALL_STATE(1396)] = 110644, - [SMALL_STATE(1397)] = 110690, - [SMALL_STATE(1398)] = 110736, - [SMALL_STATE(1399)] = 110782, - [SMALL_STATE(1400)] = 110832, - [SMALL_STATE(1401)] = 110890, - [SMALL_STATE(1402)] = 110936, - [SMALL_STATE(1403)] = 111004, - [SMALL_STATE(1404)] = 111074, - [SMALL_STATE(1405)] = 111146, - [SMALL_STATE(1406)] = 111220, - [SMALL_STATE(1407)] = 111284, - [SMALL_STATE(1408)] = 111344, - [SMALL_STATE(1409)] = 111390, - [SMALL_STATE(1410)] = 111436, - [SMALL_STATE(1411)] = 111482, - [SMALL_STATE(1412)] = 111542, - [SMALL_STATE(1413)] = 111626, - [SMALL_STATE(1414)] = 111672, - [SMALL_STATE(1415)] = 111722, - [SMALL_STATE(1416)] = 111778, - [SMALL_STATE(1417)] = 111824, - [SMALL_STATE(1418)] = 111874, - [SMALL_STATE(1419)] = 111960, - [SMALL_STATE(1420)] = 112006, - [SMALL_STATE(1421)] = 112056, - [SMALL_STATE(1422)] = 112110, - [SMALL_STATE(1423)] = 112157, - [SMALL_STATE(1424)] = 112204, - [SMALL_STATE(1425)] = 112259, - [SMALL_STATE(1426)] = 112304, - [SMALL_STATE(1427)] = 112349, - [SMALL_STATE(1428)] = 112398, - [SMALL_STATE(1429)] = 112445, - [SMALL_STATE(1430)] = 112492, - [SMALL_STATE(1431)] = 112541, - [SMALL_STATE(1432)] = 112586, - [SMALL_STATE(1433)] = 112665, - [SMALL_STATE(1434)] = 112710, - [SMALL_STATE(1435)] = 112765, - [SMALL_STATE(1436)] = 112824, - [SMALL_STATE(1437)] = 112871, - [SMALL_STATE(1438)] = 112918, - [SMALL_STATE(1439)] = 112965, - [SMALL_STATE(1440)] = 113046, - [SMALL_STATE(1441)] = 113095, - [SMALL_STATE(1442)] = 113142, - [SMALL_STATE(1443)] = 113189, - [SMALL_STATE(1444)] = 113238, - [SMALL_STATE(1445)] = 113285, - [SMALL_STATE(1446)] = 113330, - [SMALL_STATE(1447)] = 113377, - [SMALL_STATE(1448)] = 113428, - [SMALL_STATE(1449)] = 113481, - [SMALL_STATE(1450)] = 113530, - [SMALL_STATE(1451)] = 113575, - [SMALL_STATE(1452)] = 113634, - [SMALL_STATE(1453)] = 113683, - [SMALL_STATE(1454)] = 113738, - [SMALL_STATE(1455)] = 113783, - [SMALL_STATE(1456)] = 113842, - [SMALL_STATE(1457)] = 113905, - [SMALL_STATE(1458)] = 113976, - [SMALL_STATE(1459)] = 114045, - [SMALL_STATE(1460)] = 114112, - [SMALL_STATE(1461)] = 114177, - [SMALL_STATE(1462)] = 114222, - [SMALL_STATE(1463)] = 114301, - [SMALL_STATE(1464)] = 114382, - [SMALL_STATE(1465)] = 114463, - [SMALL_STATE(1466)] = 114510, - [SMALL_STATE(1467)] = 114555, - [SMALL_STATE(1468)] = 114606, - [SMALL_STATE(1469)] = 114653, - [SMALL_STATE(1470)] = 114700, - [SMALL_STATE(1471)] = 114753, - [SMALL_STATE(1472)] = 114802, - [SMALL_STATE(1473)] = 114847, - [SMALL_STATE(1474)] = 114894, - [SMALL_STATE(1475)] = 114941, - [SMALL_STATE(1476)] = 114988, - [SMALL_STATE(1477)] = 115035, - [SMALL_STATE(1478)] = 115082, - [SMALL_STATE(1479)] = 115131, - [SMALL_STATE(1480)] = 115178, - [SMALL_STATE(1481)] = 115223, - [SMALL_STATE(1482)] = 115278, - [SMALL_STATE(1483)] = 115325, - [SMALL_STATE(1484)] = 115372, - [SMALL_STATE(1485)] = 115421, - [SMALL_STATE(1486)] = 115470, - [SMALL_STATE(1487)] = 115529, - [SMALL_STATE(1488)] = 115576, - [SMALL_STATE(1489)] = 115621, - [SMALL_STATE(1490)] = 115668, - [SMALL_STATE(1491)] = 115715, - [SMALL_STATE(1492)] = 115762, - [SMALL_STATE(1493)] = 115809, - [SMALL_STATE(1494)] = 115867, - [SMALL_STATE(1495)] = 115947, - [SMALL_STATE(1496)] = 116001, - [SMALL_STATE(1497)] = 116059, - [SMALL_STATE(1498)] = 116105, - [SMALL_STATE(1499)] = 116163, - [SMALL_STATE(1500)] = 116221, - [SMALL_STATE(1501)] = 116269, - [SMALL_STATE(1502)] = 116331, - [SMALL_STATE(1503)] = 116403, - [SMALL_STATE(1504)] = 116473, - [SMALL_STATE(1505)] = 116541, - [SMALL_STATE(1506)] = 116607, - [SMALL_STATE(1507)] = 116653, - [SMALL_STATE(1508)] = 116701, - [SMALL_STATE(1509)] = 116747, - [SMALL_STATE(1510)] = 116805, - [SMALL_STATE(1511)] = 116851, - [SMALL_STATE(1512)] = 116897, - [SMALL_STATE(1513)] = 116945, - [SMALL_STATE(1514)] = 116993, - [SMALL_STATE(1515)] = 117045, - [SMALL_STATE(1516)] = 117089, - [SMALL_STATE(1517)] = 117135, - [SMALL_STATE(1518)] = 117179, - [SMALL_STATE(1519)] = 117227, - [SMALL_STATE(1520)] = 117309, - [SMALL_STATE(1521)] = 117391, - [SMALL_STATE(1522)] = 117435, - [SMALL_STATE(1523)] = 117479, - [SMALL_STATE(1524)] = 117525, - [SMALL_STATE(1525)] = 117573, - [SMALL_STATE(1526)] = 117627, - [SMALL_STATE(1527)] = 117675, - [SMALL_STATE(1528)] = 117721, - [SMALL_STATE(1529)] = 117779, - [SMALL_STATE(1530)] = 117825, - [SMALL_STATE(1531)] = 117869, - [SMALL_STATE(1532)] = 117949, - [SMALL_STATE(1533)] = 117999, - [SMALL_STATE(1534)] = 118057, - [SMALL_STATE(1535)] = 118101, - [SMALL_STATE(1536)] = 118155, - [SMALL_STATE(1537)] = 118217, - [SMALL_STATE(1538)] = 118297, - [SMALL_STATE(1539)] = 118377, - [SMALL_STATE(1540)] = 118447, - [SMALL_STATE(1541)] = 118491, - [SMALL_STATE(1542)] = 118559, - [SMALL_STATE(1543)] = 118605, - [SMALL_STATE(1544)] = 118653, - [SMALL_STATE(1545)] = 118729, - [SMALL_STATE(1546)] = 118795, - [SMALL_STATE(1547)] = 118839, - [SMALL_STATE(1548)] = 118917, - [SMALL_STATE(1549)] = 118965, - [SMALL_STATE(1550)] = 119019, - [SMALL_STATE(1551)] = 119083, - [SMALL_STATE(1552)] = 119133, - [SMALL_STATE(1553)] = 119183, - [SMALL_STATE(1554)] = 119233, - [SMALL_STATE(1555)] = 119285, - [SMALL_STATE(1556)] = 119331, - [SMALL_STATE(1557)] = 119407, - [SMALL_STATE(1558)] = 119457, - [SMALL_STATE(1559)] = 119505, - [SMALL_STATE(1560)] = 119559, - [SMALL_STATE(1561)] = 119611, - [SMALL_STATE(1562)] = 119663, - [SMALL_STATE(1563)] = 119709, - [SMALL_STATE(1564)] = 119753, - [SMALL_STATE(1565)] = 119797, - [SMALL_STATE(1566)] = 119847, - [SMALL_STATE(1567)] = 119895, - [SMALL_STATE(1568)] = 119941, - [SMALL_STATE(1569)] = 119991, - [SMALL_STATE(1570)] = 120037, - [SMALL_STATE(1571)] = 120091, - [SMALL_STATE(1572)] = 120149, - [SMALL_STATE(1573)] = 120197, - [SMALL_STATE(1574)] = 120275, - [SMALL_STATE(1575)] = 120333, - [SMALL_STATE(1576)] = 120379, - [SMALL_STATE(1577)] = 120427, - [SMALL_STATE(1578)] = 120473, - [SMALL_STATE(1579)] = 120519, - [SMALL_STATE(1580)] = 120563, - [SMALL_STATE(1581)] = 120609, - [SMALL_STATE(1582)] = 120655, - [SMALL_STATE(1583)] = 120701, - [SMALL_STATE(1584)] = 120749, - [SMALL_STATE(1585)] = 120795, - [SMALL_STATE(1586)] = 120847, - [SMALL_STATE(1587)] = 120905, - [SMALL_STATE(1588)] = 120963, - [SMALL_STATE(1589)] = 121009, - [SMALL_STATE(1590)] = 121069, - [SMALL_STATE(1591)] = 121137, - [SMALL_STATE(1592)] = 121183, - [SMALL_STATE(1593)] = 121249, - [SMALL_STATE(1594)] = 121313, - [SMALL_STATE(1595)] = 121375, - [SMALL_STATE(1596)] = 121423, - [SMALL_STATE(1597)] = 121469, - [SMALL_STATE(1598)] = 121517, - [SMALL_STATE(1599)] = 121563, - [SMALL_STATE(1600)] = 121617, - [SMALL_STATE(1601)] = 121665, - [SMALL_STATE(1602)] = 121717, - [SMALL_STATE(1603)] = 121765, - [SMALL_STATE(1604)] = 121811, - [SMALL_STATE(1605)] = 121889, - [SMALL_STATE(1606)] = 121947, - [SMALL_STATE(1607)] = 121993, - [SMALL_STATE(1608)] = 122039, - [SMALL_STATE(1609)] = 122117, - [SMALL_STATE(1610)] = 122195, - [SMALL_STATE(1611)] = 122241, - [SMALL_STATE(1612)] = 122289, - [SMALL_STATE(1613)] = 122335, - [SMALL_STATE(1614)] = 122383, - [SMALL_STATE(1615)] = 122465, - [SMALL_STATE(1616)] = 122511, - [SMALL_STATE(1617)] = 122557, - [SMALL_STATE(1618)] = 122603, - [SMALL_STATE(1619)] = 122649, - [SMALL_STATE(1620)] = 122695, - [SMALL_STATE(1621)] = 122743, - [SMALL_STATE(1622)] = 122789, - [SMALL_STATE(1623)] = 122869, - [SMALL_STATE(1624)] = 122915, - [SMALL_STATE(1625)] = 122961, - [SMALL_STATE(1626)] = 123011, - [SMALL_STATE(1627)] = 123057, - [SMALL_STATE(1628)] = 123103, - [SMALL_STATE(1629)] = 123149, - [SMALL_STATE(1630)] = 123197, - [SMALL_STATE(1631)] = 123241, - [SMALL_STATE(1632)] = 123284, - [SMALL_STATE(1633)] = 123329, - [SMALL_STATE(1634)] = 123372, - [SMALL_STATE(1635)] = 123415, - [SMALL_STATE(1636)] = 123460, - [SMALL_STATE(1637)] = 123503, - [SMALL_STATE(1638)] = 123546, - [SMALL_STATE(1639)] = 123589, - [SMALL_STATE(1640)] = 123632, - [SMALL_STATE(1641)] = 123675, - [SMALL_STATE(1642)] = 123718, - [SMALL_STATE(1643)] = 123795, - [SMALL_STATE(1644)] = 123838, - [SMALL_STATE(1645)] = 123881, - [SMALL_STATE(1646)] = 123934, - [SMALL_STATE(1647)] = 123977, - [SMALL_STATE(1648)] = 124020, - [SMALL_STATE(1649)] = 124063, - [SMALL_STATE(1650)] = 124106, - [SMALL_STATE(1651)] = 124149, - [SMALL_STATE(1652)] = 124194, - [SMALL_STATE(1653)] = 124237, - [SMALL_STATE(1654)] = 124280, - [SMALL_STATE(1655)] = 124323, - [SMALL_STATE(1656)] = 124366, - [SMALL_STATE(1657)] = 124411, - [SMALL_STATE(1658)] = 124460, - [SMALL_STATE(1659)] = 124503, - [SMALL_STATE(1660)] = 124546, - [SMALL_STATE(1661)] = 124589, - [SMALL_STATE(1662)] = 124632, - [SMALL_STATE(1663)] = 124675, - [SMALL_STATE(1664)] = 124726, - [SMALL_STATE(1665)] = 124769, - [SMALL_STATE(1666)] = 124812, - [SMALL_STATE(1667)] = 124855, - [SMALL_STATE(1668)] = 124898, - [SMALL_STATE(1669)] = 124941, - [SMALL_STATE(1670)] = 124986, - [SMALL_STATE(1671)] = 125029, - [SMALL_STATE(1672)] = 125074, - [SMALL_STATE(1673)] = 125117, - [SMALL_STATE(1674)] = 125160, - [SMALL_STATE(1675)] = 125205, - [SMALL_STATE(1676)] = 125248, - [SMALL_STATE(1677)] = 125291, - [SMALL_STATE(1678)] = 125334, - [SMALL_STATE(1679)] = 125383, - [SMALL_STATE(1680)] = 125426, - [SMALL_STATE(1681)] = 125469, - [SMALL_STATE(1682)] = 125512, - [SMALL_STATE(1683)] = 125555, - [SMALL_STATE(1684)] = 125598, - [SMALL_STATE(1685)] = 125641, - [SMALL_STATE(1686)] = 125684, - [SMALL_STATE(1687)] = 125727, - [SMALL_STATE(1688)] = 125770, - [SMALL_STATE(1689)] = 125813, - [SMALL_STATE(1690)] = 125870, - [SMALL_STATE(1691)] = 125913, - [SMALL_STATE(1692)] = 125956, - [SMALL_STATE(1693)] = 125999, - [SMALL_STATE(1694)] = 126044, - [SMALL_STATE(1695)] = 126087, - [SMALL_STATE(1696)] = 126132, - [SMALL_STATE(1697)] = 126181, - [SMALL_STATE(1698)] = 126224, - [SMALL_STATE(1699)] = 126271, - [SMALL_STATE(1700)] = 126316, - [SMALL_STATE(1701)] = 126361, - [SMALL_STATE(1702)] = 126404, - [SMALL_STATE(1703)] = 126447, - [SMALL_STATE(1704)] = 126492, - [SMALL_STATE(1705)] = 126539, - [SMALL_STATE(1706)] = 126582, - [SMALL_STATE(1707)] = 126627, - [SMALL_STATE(1708)] = 126670, - [SMALL_STATE(1709)] = 126713, - [SMALL_STATE(1710)] = 126766, - [SMALL_STATE(1711)] = 126813, - [SMALL_STATE(1712)] = 126856, - [SMALL_STATE(1713)] = 126899, - [SMALL_STATE(1714)] = 126942, - [SMALL_STATE(1715)] = 126999, - [SMALL_STATE(1716)] = 127042, - [SMALL_STATE(1717)] = 127119, - [SMALL_STATE(1718)] = 127162, - [SMALL_STATE(1719)] = 127207, - [SMALL_STATE(1720)] = 127260, - [SMALL_STATE(1721)] = 127303, - [SMALL_STATE(1722)] = 127346, - [SMALL_STATE(1723)] = 127389, - [SMALL_STATE(1724)] = 127434, - [SMALL_STATE(1725)] = 127477, - [SMALL_STATE(1726)] = 127520, - [SMALL_STATE(1727)] = 127563, - [SMALL_STATE(1728)] = 127606, - [SMALL_STATE(1729)] = 127649, - [SMALL_STATE(1730)] = 127692, - [SMALL_STATE(1731)] = 127735, - [SMALL_STATE(1732)] = 127778, - [SMALL_STATE(1733)] = 127821, - [SMALL_STATE(1734)] = 127864, - [SMALL_STATE(1735)] = 127907, - [SMALL_STATE(1736)] = 127950, - [SMALL_STATE(1737)] = 127993, - [SMALL_STATE(1738)] = 128036, - [SMALL_STATE(1739)] = 128079, - [SMALL_STATE(1740)] = 128122, - [SMALL_STATE(1741)] = 128165, - [SMALL_STATE(1742)] = 128208, - [SMALL_STATE(1743)] = 128265, - [SMALL_STATE(1744)] = 128308, - [SMALL_STATE(1745)] = 128355, - [SMALL_STATE(1746)] = 128398, - [SMALL_STATE(1747)] = 128445, - [SMALL_STATE(1748)] = 128488, - [SMALL_STATE(1749)] = 128531, - [SMALL_STATE(1750)] = 128574, - [SMALL_STATE(1751)] = 128619, - [SMALL_STATE(1752)] = 128680, - [SMALL_STATE(1753)] = 128723, - [SMALL_STATE(1754)] = 128766, - [SMALL_STATE(1755)] = 128817, - [SMALL_STATE(1756)] = 128864, - [SMALL_STATE(1757)] = 128907, - [SMALL_STATE(1758)] = 128960, - [SMALL_STATE(1759)] = 129005, - [SMALL_STATE(1760)] = 129048, - [SMALL_STATE(1761)] = 129093, - [SMALL_STATE(1762)] = 129136, - [SMALL_STATE(1763)] = 129181, - [SMALL_STATE(1764)] = 129226, - [SMALL_STATE(1765)] = 129269, - [SMALL_STATE(1766)] = 129312, - [SMALL_STATE(1767)] = 129381, - [SMALL_STATE(1768)] = 129424, - [SMALL_STATE(1769)] = 129469, - [SMALL_STATE(1770)] = 129512, - [SMALL_STATE(1771)] = 129569, - [SMALL_STATE(1772)] = 129612, - [SMALL_STATE(1773)] = 129657, - [SMALL_STATE(1774)] = 129700, - [SMALL_STATE(1775)] = 129743, - [SMALL_STATE(1776)] = 129786, - [SMALL_STATE(1777)] = 129831, - [SMALL_STATE(1778)] = 129874, - [SMALL_STATE(1779)] = 129917, - [SMALL_STATE(1780)] = 129960, - [SMALL_STATE(1781)] = 130025, - [SMALL_STATE(1782)] = 130068, - [SMALL_STATE(1783)] = 130111, - [SMALL_STATE(1784)] = 130164, - [SMALL_STATE(1785)] = 130243, - [SMALL_STATE(1786)] = 130288, - [SMALL_STATE(1787)] = 130331, - [SMALL_STATE(1788)] = 130378, - [SMALL_STATE(1789)] = 130421, - [SMALL_STATE(1790)] = 130488, - [SMALL_STATE(1791)] = 130531, - [SMALL_STATE(1792)] = 130574, - [SMALL_STATE(1793)] = 130637, - [SMALL_STATE(1794)] = 130682, - [SMALL_STATE(1795)] = 130727, - [SMALL_STATE(1796)] = 130772, - [SMALL_STATE(1797)] = 130815, - [SMALL_STATE(1798)] = 130860, - [SMALL_STATE(1799)] = 130909, - [SMALL_STATE(1800)] = 130952, - [SMALL_STATE(1801)] = 130995, - [SMALL_STATE(1802)] = 131038, - [SMALL_STATE(1803)] = 131081, - [SMALL_STATE(1804)] = 131124, - [SMALL_STATE(1805)] = 131169, - [SMALL_STATE(1806)] = 131212, - [SMALL_STATE(1807)] = 131255, - [SMALL_STATE(1808)] = 131298, - [SMALL_STATE(1809)] = 131343, - [SMALL_STATE(1810)] = 131386, - [SMALL_STATE(1811)] = 131465, - [SMALL_STATE(1812)] = 131516, - [SMALL_STATE(1813)] = 131559, - [SMALL_STATE(1814)] = 131638, - [SMALL_STATE(1815)] = 131683, - [SMALL_STATE(1816)] = 131734, - [SMALL_STATE(1817)] = 131777, - [SMALL_STATE(1818)] = 131820, - [SMALL_STATE(1819)] = 131863, - [SMALL_STATE(1820)] = 131906, - [SMALL_STATE(1821)] = 131951, - [SMALL_STATE(1822)] = 131994, - [SMALL_STATE(1823)] = 132041, - [SMALL_STATE(1824)] = 132086, - [SMALL_STATE(1825)] = 132129, - [SMALL_STATE(1826)] = 132172, - [SMALL_STATE(1827)] = 132221, - [SMALL_STATE(1828)] = 132264, - [SMALL_STATE(1829)] = 132306, - [SMALL_STATE(1830)] = 132348, - [SMALL_STATE(1831)] = 132390, - [SMALL_STATE(1832)] = 132432, - [SMALL_STATE(1833)] = 132474, - [SMALL_STATE(1834)] = 132516, - [SMALL_STATE(1835)] = 132558, - [SMALL_STATE(1836)] = 132602, - [SMALL_STATE(1837)] = 132644, - [SMALL_STATE(1838)] = 132686, - [SMALL_STATE(1839)] = 132730, - [SMALL_STATE(1840)] = 132772, - [SMALL_STATE(1841)] = 132814, - [SMALL_STATE(1842)] = 132856, - [SMALL_STATE(1843)] = 132898, - [SMALL_STATE(1844)] = 132940, - [SMALL_STATE(1845)] = 132982, - [SMALL_STATE(1846)] = 133024, - [SMALL_STATE(1847)] = 133066, - [SMALL_STATE(1848)] = 133108, - [SMALL_STATE(1849)] = 133150, - [SMALL_STATE(1850)] = 133192, - [SMALL_STATE(1851)] = 133234, - [SMALL_STATE(1852)] = 133276, - [SMALL_STATE(1853)] = 133318, - [SMALL_STATE(1854)] = 133360, - [SMALL_STATE(1855)] = 133408, - [SMALL_STATE(1856)] = 133452, - [SMALL_STATE(1857)] = 133494, - [SMALL_STATE(1858)] = 133536, - [SMALL_STATE(1859)] = 133578, - [SMALL_STATE(1860)] = 133626, - [SMALL_STATE(1861)] = 133668, - [SMALL_STATE(1862)] = 133710, - [SMALL_STATE(1863)] = 133752, - [SMALL_STATE(1864)] = 133794, - [SMALL_STATE(1865)] = 133836, - [SMALL_STATE(1866)] = 133878, - [SMALL_STATE(1867)] = 133920, - [SMALL_STATE(1868)] = 133962, - [SMALL_STATE(1869)] = 134004, - [SMALL_STATE(1870)] = 134046, - [SMALL_STATE(1871)] = 134094, - [SMALL_STATE(1872)] = 134136, - [SMALL_STATE(1873)] = 134178, - [SMALL_STATE(1874)] = 134220, - [SMALL_STATE(1875)] = 134262, - [SMALL_STATE(1876)] = 134304, - [SMALL_STATE(1877)] = 134346, - [SMALL_STATE(1878)] = 134388, - [SMALL_STATE(1879)] = 134430, - [SMALL_STATE(1880)] = 134472, - [SMALL_STATE(1881)] = 134514, - [SMALL_STATE(1882)] = 134562, - [SMALL_STATE(1883)] = 134604, - [SMALL_STATE(1884)] = 134646, - [SMALL_STATE(1885)] = 134688, - [SMALL_STATE(1886)] = 134730, - [SMALL_STATE(1887)] = 134772, - [SMALL_STATE(1888)] = 134814, - [SMALL_STATE(1889)] = 134856, - [SMALL_STATE(1890)] = 134898, - [SMALL_STATE(1891)] = 134940, - [SMALL_STATE(1892)] = 134982, - [SMALL_STATE(1893)] = 135024, - [SMALL_STATE(1894)] = 135076, - [SMALL_STATE(1895)] = 135118, - [SMALL_STATE(1896)] = 135160, - [SMALL_STATE(1897)] = 135202, - [SMALL_STATE(1898)] = 135244, - [SMALL_STATE(1899)] = 135286, - [SMALL_STATE(1900)] = 135328, - [SMALL_STATE(1901)] = 135370, - [SMALL_STATE(1902)] = 135412, - [SMALL_STATE(1903)] = 135460, - [SMALL_STATE(1904)] = 135502, - [SMALL_STATE(1905)] = 135544, - [SMALL_STATE(1906)] = 135588, - [SMALL_STATE(1907)] = 135630, - [SMALL_STATE(1908)] = 135672, - [SMALL_STATE(1909)] = 135714, - [SMALL_STATE(1910)] = 135756, - [SMALL_STATE(1911)] = 135798, - [SMALL_STATE(1912)] = 135850, - [SMALL_STATE(1913)] = 135892, - [SMALL_STATE(1914)] = 135934, - [SMALL_STATE(1915)] = 135978, - [SMALL_STATE(1916)] = 136020, - [SMALL_STATE(1917)] = 136062, - [SMALL_STATE(1918)] = 136104, - [SMALL_STATE(1919)] = 136146, - [SMALL_STATE(1920)] = 136188, - [SMALL_STATE(1921)] = 136230, - [SMALL_STATE(1922)] = 136274, - [SMALL_STATE(1923)] = 136318, - [SMALL_STATE(1924)] = 136360, - [SMALL_STATE(1925)] = 136402, - [SMALL_STATE(1926)] = 136444, - [SMALL_STATE(1927)] = 136486, - [SMALL_STATE(1928)] = 136530, - [SMALL_STATE(1929)] = 136572, - [SMALL_STATE(1930)] = 136614, - [SMALL_STATE(1931)] = 136656, - [SMALL_STATE(1932)] = 136698, - [SMALL_STATE(1933)] = 136740, - [SMALL_STATE(1934)] = 136782, - [SMALL_STATE(1935)] = 136824, - [SMALL_STATE(1936)] = 136866, - [SMALL_STATE(1937)] = 136908, - [SMALL_STATE(1938)] = 136950, - [SMALL_STATE(1939)] = 136992, - [SMALL_STATE(1940)] = 137036, - [SMALL_STATE(1941)] = 137078, - [SMALL_STATE(1942)] = 137120, - [SMALL_STATE(1943)] = 137168, - [SMALL_STATE(1944)] = 137210, - [SMALL_STATE(1945)] = 137252, - [SMALL_STATE(1946)] = 137294, - [SMALL_STATE(1947)] = 137336, - [SMALL_STATE(1948)] = 137378, - [SMALL_STATE(1949)] = 137420, - [SMALL_STATE(1950)] = 137462, - [SMALL_STATE(1951)] = 137504, - [SMALL_STATE(1952)] = 137546, - [SMALL_STATE(1953)] = 137588, - [SMALL_STATE(1954)] = 137636, - [SMALL_STATE(1955)] = 137678, - [SMALL_STATE(1956)] = 137720, - [SMALL_STATE(1957)] = 137768, - [SMALL_STATE(1958)] = 137810, - [SMALL_STATE(1959)] = 137852, - [SMALL_STATE(1960)] = 137894, - [SMALL_STATE(1961)] = 137939, - [SMALL_STATE(1962)] = 137980, - [SMALL_STATE(1963)] = 138037, - [SMALL_STATE(1964)] = 138082, - [SMALL_STATE(1965)] = 138139, - [SMALL_STATE(1966)] = 138184, - [SMALL_STATE(1967)] = 138229, - [SMALL_STATE(1968)] = 138274, - [SMALL_STATE(1969)] = 138319, - [SMALL_STATE(1970)] = 138376, - [SMALL_STATE(1971)] = 138429, - [SMALL_STATE(1972)] = 138476, - [SMALL_STATE(1973)] = 138517, - [SMALL_STATE(1974)] = 138558, - [SMALL_STATE(1975)] = 138599, - [SMALL_STATE(1976)] = 138642, - [SMALL_STATE(1977)] = 138689, - [SMALL_STATE(1978)] = 138730, - [SMALL_STATE(1979)] = 138771, - [SMALL_STATE(1980)] = 138812, - [SMALL_STATE(1981)] = 138853, - [SMALL_STATE(1982)] = 138894, - [SMALL_STATE(1983)] = 138935, - [SMALL_STATE(1984)] = 138976, - [SMALL_STATE(1985)] = 139017, - [SMALL_STATE(1986)] = 139064, - [SMALL_STATE(1987)] = 139105, - [SMALL_STATE(1988)] = 139152, - [SMALL_STATE(1989)] = 139193, - [SMALL_STATE(1990)] = 139234, - [SMALL_STATE(1991)] = 139275, - [SMALL_STATE(1992)] = 139316, - [SMALL_STATE(1993)] = 139365, - [SMALL_STATE(1994)] = 139406, - [SMALL_STATE(1995)] = 139447, - [SMALL_STATE(1996)] = 139488, - [SMALL_STATE(1997)] = 139529, - [SMALL_STATE(1998)] = 139570, - [SMALL_STATE(1999)] = 139625, - [SMALL_STATE(2000)] = 139700, - [SMALL_STATE(2001)] = 139741, - [SMALL_STATE(2002)] = 139782, - [SMALL_STATE(2003)] = 139857, - [SMALL_STATE(2004)] = 139898, - [SMALL_STATE(2005)] = 139939, - [SMALL_STATE(2006)] = 139980, - [SMALL_STATE(2007)] = 140021, - [SMALL_STATE(2008)] = 140066, - [SMALL_STATE(2009)] = 140107, - [SMALL_STATE(2010)] = 140148, - [SMALL_STATE(2011)] = 140203, - [SMALL_STATE(2012)] = 140258, - [SMALL_STATE(2013)] = 140317, - [SMALL_STATE(2014)] = 140384, - [SMALL_STATE(2015)] = 140449, - [SMALL_STATE(2016)] = 140512, - [SMALL_STATE(2017)] = 140573, - [SMALL_STATE(2018)] = 140614, - [SMALL_STATE(2019)] = 140655, - [SMALL_STATE(2020)] = 140696, - [SMALL_STATE(2021)] = 140771, - [SMALL_STATE(2022)] = 140846, - [SMALL_STATE(2023)] = 140887, - [SMALL_STATE(2024)] = 140928, - [SMALL_STATE(2025)] = 140969, - [SMALL_STATE(2026)] = 141010, - [SMALL_STATE(2027)] = 141051, - [SMALL_STATE(2028)] = 141092, - [SMALL_STATE(2029)] = 141133, - [SMALL_STATE(2030)] = 141174, - [SMALL_STATE(2031)] = 141215, - [SMALL_STATE(2032)] = 141256, - [SMALL_STATE(2033)] = 141297, - [SMALL_STATE(2034)] = 141338, - [SMALL_STATE(2035)] = 141379, - [SMALL_STATE(2036)] = 141420, - [SMALL_STATE(2037)] = 141461, - [SMALL_STATE(2038)] = 141502, - [SMALL_STATE(2039)] = 141543, - [SMALL_STATE(2040)] = 141588, - [SMALL_STATE(2041)] = 141663, - [SMALL_STATE(2042)] = 141706, - [SMALL_STATE(2043)] = 141753, - [SMALL_STATE(2044)] = 141808, - [SMALL_STATE(2045)] = 141859, - [SMALL_STATE(2046)] = 141904, - [SMALL_STATE(2047)] = 141954, - [SMALL_STATE(2048)] = 142004, - [SMALL_STATE(2049)] = 142046, - [SMALL_STATE(2050)] = 142088, - [SMALL_STATE(2051)] = 142130, - [SMALL_STATE(2052)] = 142172, - [SMALL_STATE(2053)] = 142214, - [SMALL_STATE(2054)] = 142257, - [SMALL_STATE(2055)] = 142302, - [SMALL_STATE(2056)] = 142339, - [SMALL_STATE(2057)] = 142395, - [SMALL_STATE(2058)] = 142451, - [SMALL_STATE(2059)] = 142507, - [SMALL_STATE(2060)] = 142563, - [SMALL_STATE(2061)] = 142619, - [SMALL_STATE(2062)] = 142675, - [SMALL_STATE(2063)] = 142731, - [SMALL_STATE(2064)] = 142787, - [SMALL_STATE(2065)] = 142843, - [SMALL_STATE(2066)] = 142899, - [SMALL_STATE(2067)] = 142955, - [SMALL_STATE(2068)] = 143011, - [SMALL_STATE(2069)] = 143067, - [SMALL_STATE(2070)] = 143123, - [SMALL_STATE(2071)] = 143179, - [SMALL_STATE(2072)] = 143235, - [SMALL_STATE(2073)] = 143291, - [SMALL_STATE(2074)] = 143347, - [SMALL_STATE(2075)] = 143403, - [SMALL_STATE(2076)] = 143459, - [SMALL_STATE(2077)] = 143515, - [SMALL_STATE(2078)] = 143571, - [SMALL_STATE(2079)] = 143627, - [SMALL_STATE(2080)] = 143683, - [SMALL_STATE(2081)] = 143739, - [SMALL_STATE(2082)] = 143795, - [SMALL_STATE(2083)] = 143851, - [SMALL_STATE(2084)] = 143907, - [SMALL_STATE(2085)] = 143963, - [SMALL_STATE(2086)] = 144019, - [SMALL_STATE(2087)] = 144075, - [SMALL_STATE(2088)] = 144131, - [SMALL_STATE(2089)] = 144187, - [SMALL_STATE(2090)] = 144243, - [SMALL_STATE(2091)] = 144299, - [SMALL_STATE(2092)] = 144355, - [SMALL_STATE(2093)] = 144411, - [SMALL_STATE(2094)] = 144467, - [SMALL_STATE(2095)] = 144523, - [SMALL_STATE(2096)] = 144579, - [SMALL_STATE(2097)] = 144613, - [SMALL_STATE(2098)] = 144669, - [SMALL_STATE(2099)] = 144725, - [SMALL_STATE(2100)] = 144781, - [SMALL_STATE(2101)] = 144837, - [SMALL_STATE(2102)] = 144893, - [SMALL_STATE(2103)] = 144949, - [SMALL_STATE(2104)] = 145005, - [SMALL_STATE(2105)] = 145061, - [SMALL_STATE(2106)] = 145117, - [SMALL_STATE(2107)] = 145173, - [SMALL_STATE(2108)] = 145229, - [SMALL_STATE(2109)] = 145285, - [SMALL_STATE(2110)] = 145328, - [SMALL_STATE(2111)] = 145381, - [SMALL_STATE(2112)] = 145434, - [SMALL_STATE(2113)] = 145487, - [SMALL_STATE(2114)] = 145540, - [SMALL_STATE(2115)] = 145593, - [SMALL_STATE(2116)] = 145646, - [SMALL_STATE(2117)] = 145699, - [SMALL_STATE(2118)] = 145752, - [SMALL_STATE(2119)] = 145805, - [SMALL_STATE(2120)] = 145858, - [SMALL_STATE(2121)] = 145911, - [SMALL_STATE(2122)] = 145966, - [SMALL_STATE(2123)] = 146019, - [SMALL_STATE(2124)] = 146072, - [SMALL_STATE(2125)] = 146125, - [SMALL_STATE(2126)] = 146180, - [SMALL_STATE(2127)] = 146233, - [SMALL_STATE(2128)] = 146286, - [SMALL_STATE(2129)] = 146339, - [SMALL_STATE(2130)] = 146392, - [SMALL_STATE(2131)] = 146445, - [SMALL_STATE(2132)] = 146498, - [SMALL_STATE(2133)] = 146551, - [SMALL_STATE(2134)] = 146604, - [SMALL_STATE(2135)] = 146657, - [SMALL_STATE(2136)] = 146710, - [SMALL_STATE(2137)] = 146763, - [SMALL_STATE(2138)] = 146816, - [SMALL_STATE(2139)] = 146871, - [SMALL_STATE(2140)] = 146924, - [SMALL_STATE(2141)] = 146977, - [SMALL_STATE(2142)] = 147030, - [SMALL_STATE(2143)] = 147083, - [SMALL_STATE(2144)] = 147136, - [SMALL_STATE(2145)] = 147189, - [SMALL_STATE(2146)] = 147242, - [SMALL_STATE(2147)] = 147295, - [SMALL_STATE(2148)] = 147348, - [SMALL_STATE(2149)] = 147403, - [SMALL_STATE(2150)] = 147456, - [SMALL_STATE(2151)] = 147511, - [SMALL_STATE(2152)] = 147564, - [SMALL_STATE(2153)] = 147617, - [SMALL_STATE(2154)] = 147660, - [SMALL_STATE(2155)] = 147713, - [SMALL_STATE(2156)] = 147766, - [SMALL_STATE(2157)] = 147819, - [SMALL_STATE(2158)] = 147862, - [SMALL_STATE(2159)] = 147915, - [SMALL_STATE(2160)] = 147958, - [SMALL_STATE(2161)] = 148011, - [SMALL_STATE(2162)] = 148064, - [SMALL_STATE(2163)] = 148117, - [SMALL_STATE(2164)] = 148170, - [SMALL_STATE(2165)] = 148225, - [SMALL_STATE(2166)] = 148278, - [SMALL_STATE(2167)] = 148331, - [SMALL_STATE(2168)] = 148386, - [SMALL_STATE(2169)] = 148439, - [SMALL_STATE(2170)] = 148484, - [SMALL_STATE(2171)] = 148537, - [SMALL_STATE(2172)] = 148590, - [SMALL_STATE(2173)] = 148643, - [SMALL_STATE(2174)] = 148696, - [SMALL_STATE(2175)] = 148749, - [SMALL_STATE(2176)] = 148802, - [SMALL_STATE(2177)] = 148855, - [SMALL_STATE(2178)] = 148908, - [SMALL_STATE(2179)] = 148961, - [SMALL_STATE(2180)] = 149014, - [SMALL_STATE(2181)] = 149067, - [SMALL_STATE(2182)] = 149120, - [SMALL_STATE(2183)] = 149173, - [SMALL_STATE(2184)] = 149226, - [SMALL_STATE(2185)] = 149279, - [SMALL_STATE(2186)] = 149332, - [SMALL_STATE(2187)] = 149387, - [SMALL_STATE(2188)] = 149440, - [SMALL_STATE(2189)] = 149495, - [SMALL_STATE(2190)] = 149548, - [SMALL_STATE(2191)] = 149601, - [SMALL_STATE(2192)] = 149654, - [SMALL_STATE(2193)] = 149707, - [SMALL_STATE(2194)] = 149762, - [SMALL_STATE(2195)] = 149805, - [SMALL_STATE(2196)] = 149858, - [SMALL_STATE(2197)] = 149911, - [SMALL_STATE(2198)] = 149964, - [SMALL_STATE(2199)] = 150017, - [SMALL_STATE(2200)] = 150070, - [SMALL_STATE(2201)] = 150123, - [SMALL_STATE(2202)] = 150176, - [SMALL_STATE(2203)] = 150229, - [SMALL_STATE(2204)] = 150282, - [SMALL_STATE(2205)] = 150335, - [SMALL_STATE(2206)] = 150390, - [SMALL_STATE(2207)] = 150431, - [SMALL_STATE(2208)] = 150472, - [SMALL_STATE(2209)] = 150513, - [SMALL_STATE(2210)] = 150554, - [SMALL_STATE(2211)] = 150595, - [SMALL_STATE(2212)] = 150633, - [SMALL_STATE(2213)] = 150671, - [SMALL_STATE(2214)] = 150709, - [SMALL_STATE(2215)] = 150747, - [SMALL_STATE(2216)] = 150785, - [SMALL_STATE(2217)] = 150822, - [SMALL_STATE(2218)] = 150859, - [SMALL_STATE(2219)] = 150896, - [SMALL_STATE(2220)] = 150933, - [SMALL_STATE(2221)] = 150970, - [SMALL_STATE(2222)] = 151007, - [SMALL_STATE(2223)] = 151044, - [SMALL_STATE(2224)] = 151081, - [SMALL_STATE(2225)] = 151118, - [SMALL_STATE(2226)] = 151155, - [SMALL_STATE(2227)] = 151192, - [SMALL_STATE(2228)] = 151229, - [SMALL_STATE(2229)] = 151266, - [SMALL_STATE(2230)] = 151303, - [SMALL_STATE(2231)] = 151340, - [SMALL_STATE(2232)] = 151376, - [SMALL_STATE(2233)] = 151412, - [SMALL_STATE(2234)] = 151448, - [SMALL_STATE(2235)] = 151484, - [SMALL_STATE(2236)] = 151520, - [SMALL_STATE(2237)] = 151554, - [SMALL_STATE(2238)] = 151588, - [SMALL_STATE(2239)] = 151622, - [SMALL_STATE(2240)] = 151656, - [SMALL_STATE(2241)] = 151690, - [SMALL_STATE(2242)] = 151717, - [SMALL_STATE(2243)] = 151764, - [SMALL_STATE(2244)] = 151809, - [SMALL_STATE(2245)] = 151838, - [SMALL_STATE(2246)] = 151865, - [SMALL_STATE(2247)] = 151912, - [SMALL_STATE(2248)] = 151959, - [SMALL_STATE(2249)] = 152006, - [SMALL_STATE(2250)] = 152033, - [SMALL_STATE(2251)] = 152066, - [SMALL_STATE(2252)] = 152113, - [SMALL_STATE(2253)] = 152158, - [SMALL_STATE(2254)] = 152195, - [SMALL_STATE(2255)] = 152222, - [SMALL_STATE(2256)] = 152269, - [SMALL_STATE(2257)] = 152316, - [SMALL_STATE(2258)] = 152363, - [SMALL_STATE(2259)] = 152410, - [SMALL_STATE(2260)] = 152454, - [SMALL_STATE(2261)] = 152498, - [SMALL_STATE(2262)] = 152544, - [SMALL_STATE(2263)] = 152590, - [SMALL_STATE(2264)] = 152632, - [SMALL_STATE(2265)] = 152670, - [SMALL_STATE(2266)] = 152714, - [SMALL_STATE(2267)] = 152760, - [SMALL_STATE(2268)] = 152798, - [SMALL_STATE(2269)] = 152844, - [SMALL_STATE(2270)] = 152890, - [SMALL_STATE(2271)] = 152936, - [SMALL_STATE(2272)] = 152980, - [SMALL_STATE(2273)] = 153026, - [SMALL_STATE(2274)] = 153072, - [SMALL_STATE(2275)] = 153118, - [SMALL_STATE(2276)] = 153143, - [SMALL_STATE(2277)] = 153168, - [SMALL_STATE(2278)] = 153199, - [SMALL_STATE(2279)] = 153234, - [SMALL_STATE(2280)] = 153275, - [SMALL_STATE(2281)] = 153300, - [SMALL_STATE(2282)] = 153325, - [SMALL_STATE(2283)] = 153366, - [SMALL_STATE(2284)] = 153398, - [SMALL_STATE(2285)] = 153438, - [SMALL_STATE(2286)] = 153474, - [SMALL_STATE(2287)] = 153510, - [SMALL_STATE(2288)] = 153544, - [SMALL_STATE(2289)] = 153584, - [SMALL_STATE(2290)] = 153620, - [SMALL_STATE(2291)] = 153644, - [SMALL_STATE(2292)] = 153684, - [SMALL_STATE(2293)] = 153708, - [SMALL_STATE(2294)] = 153748, - [SMALL_STATE(2295)] = 153772, - [SMALL_STATE(2296)] = 153808, - [SMALL_STATE(2297)] = 153848, - [SMALL_STATE(2298)] = 153878, - [SMALL_STATE(2299)] = 153918, - [SMALL_STATE(2300)] = 153954, - [SMALL_STATE(2301)] = 153990, - [SMALL_STATE(2302)] = 154022, - [SMALL_STATE(2303)] = 154058, - [SMALL_STATE(2304)] = 154098, - [SMALL_STATE(2305)] = 154138, - [SMALL_STATE(2306)] = 154178, - [SMALL_STATE(2307)] = 154214, - [SMALL_STATE(2308)] = 154240, - [SMALL_STATE(2309)] = 154264, - [SMALL_STATE(2310)] = 154300, - [SMALL_STATE(2311)] = 154337, - [SMALL_STATE(2312)] = 154372, - [SMALL_STATE(2313)] = 154407, - [SMALL_STATE(2314)] = 154444, - [SMALL_STATE(2315)] = 154469, - [SMALL_STATE(2316)] = 154494, - [SMALL_STATE(2317)] = 154519, - [SMALL_STATE(2318)] = 154542, - [SMALL_STATE(2319)] = 154573, - [SMALL_STATE(2320)] = 154602, - [SMALL_STATE(2321)] = 154637, - [SMALL_STATE(2322)] = 154660, - [SMALL_STATE(2323)] = 154683, - [SMALL_STATE(2324)] = 154714, - [SMALL_STATE(2325)] = 154751, - [SMALL_STATE(2326)] = 154782, - [SMALL_STATE(2327)] = 154813, - [SMALL_STATE(2328)] = 154844, - [SMALL_STATE(2329)] = 154867, - [SMALL_STATE(2330)] = 154890, - [SMALL_STATE(2331)] = 154923, - [SMALL_STATE(2332)] = 154956, - [SMALL_STATE(2333)] = 154987, - [SMALL_STATE(2334)] = 155020, - [SMALL_STATE(2335)] = 155051, - [SMALL_STATE(2336)] = 155082, - [SMALL_STATE(2337)] = 155113, - [SMALL_STATE(2338)] = 155136, - [SMALL_STATE(2339)] = 155169, - [SMALL_STATE(2340)] = 155200, - [SMALL_STATE(2341)] = 155237, - [SMALL_STATE(2342)] = 155270, - [SMALL_STATE(2343)] = 155301, - [SMALL_STATE(2344)] = 155324, - [SMALL_STATE(2345)] = 155359, - [SMALL_STATE(2346)] = 155394, - [SMALL_STATE(2347)] = 155429, - [SMALL_STATE(2348)] = 155466, - [SMALL_STATE(2349)] = 155503, - [SMALL_STATE(2350)] = 155534, - [SMALL_STATE(2351)] = 155559, - [SMALL_STATE(2352)] = 155596, - [SMALL_STATE(2353)] = 155629, - [SMALL_STATE(2354)] = 155660, - [SMALL_STATE(2355)] = 155683, - [SMALL_STATE(2356)] = 155714, - [SMALL_STATE(2357)] = 155747, - [SMALL_STATE(2358)] = 155778, - [SMALL_STATE(2359)] = 155809, - [SMALL_STATE(2360)] = 155846, - [SMALL_STATE(2361)] = 155877, - [SMALL_STATE(2362)] = 155908, - [SMALL_STATE(2363)] = 155941, - [SMALL_STATE(2364)] = 155970, - [SMALL_STATE(2365)] = 156007, - [SMALL_STATE(2366)] = 156040, - [SMALL_STATE(2367)] = 156077, - [SMALL_STATE(2368)] = 156108, - [SMALL_STATE(2369)] = 156140, - [SMALL_STATE(2370)] = 156174, - [SMALL_STATE(2371)] = 156202, - [SMALL_STATE(2372)] = 156230, - [SMALL_STATE(2373)] = 156264, - [SMALL_STATE(2374)] = 156298, - [SMALL_STATE(2375)] = 156320, - [SMALL_STATE(2376)] = 156354, - [SMALL_STATE(2377)] = 156382, - [SMALL_STATE(2378)] = 156416, - [SMALL_STATE(2379)] = 156450, - [SMALL_STATE(2380)] = 156484, - [SMALL_STATE(2381)] = 156518, - [SMALL_STATE(2382)] = 156546, - [SMALL_STATE(2383)] = 156574, - [SMALL_STATE(2384)] = 156608, - [SMALL_STATE(2385)] = 156636, - [SMALL_STATE(2386)] = 156664, - [SMALL_STATE(2387)] = 156686, - [SMALL_STATE(2388)] = 156720, - [SMALL_STATE(2389)] = 156748, - [SMALL_STATE(2390)] = 156780, - [SMALL_STATE(2391)] = 156812, - [SMALL_STATE(2392)] = 156846, - [SMALL_STATE(2393)] = 156874, - [SMALL_STATE(2394)] = 156908, - [SMALL_STATE(2395)] = 156938, - [SMALL_STATE(2396)] = 156970, - [SMALL_STATE(2397)] = 157002, - [SMALL_STATE(2398)] = 157024, - [SMALL_STATE(2399)] = 157058, - [SMALL_STATE(2400)] = 157092, - [SMALL_STATE(2401)] = 157126, - [SMALL_STATE(2402)] = 157154, - [SMALL_STATE(2403)] = 157182, - [SMALL_STATE(2404)] = 157210, - [SMALL_STATE(2405)] = 157244, - [SMALL_STATE(2406)] = 157272, - [SMALL_STATE(2407)] = 157300, - [SMALL_STATE(2408)] = 157334, - [SMALL_STATE(2409)] = 157356, - [SMALL_STATE(2410)] = 157384, - [SMALL_STATE(2411)] = 157418, - [SMALL_STATE(2412)] = 157446, - [SMALL_STATE(2413)] = 157478, - [SMALL_STATE(2414)] = 157506, - [SMALL_STATE(2415)] = 157538, - [SMALL_STATE(2416)] = 157570, - [SMALL_STATE(2417)] = 157598, - [SMALL_STATE(2418)] = 157630, - [SMALL_STATE(2419)] = 157658, - [SMALL_STATE(2420)] = 157688, - [SMALL_STATE(2421)] = 157716, - [SMALL_STATE(2422)] = 157750, - [SMALL_STATE(2423)] = 157784, - [SMALL_STATE(2424)] = 157818, - [SMALL_STATE(2425)] = 157849, - [SMALL_STATE(2426)] = 157880, - [SMALL_STATE(2427)] = 157911, - [SMALL_STATE(2428)] = 157942, - [SMALL_STATE(2429)] = 157973, - [SMALL_STATE(2430)] = 158004, - [SMALL_STATE(2431)] = 158029, - [SMALL_STATE(2432)] = 158060, - [SMALL_STATE(2433)] = 158091, - [SMALL_STATE(2434)] = 158122, - [SMALL_STATE(2435)] = 158153, - [SMALL_STATE(2436)] = 158184, - [SMALL_STATE(2437)] = 158215, - [SMALL_STATE(2438)] = 158246, - [SMALL_STATE(2439)] = 158277, - [SMALL_STATE(2440)] = 158308, - [SMALL_STATE(2441)] = 158339, - [SMALL_STATE(2442)] = 158364, - [SMALL_STATE(2443)] = 158389, - [SMALL_STATE(2444)] = 158420, - [SMALL_STATE(2445)] = 158451, - [SMALL_STATE(2446)] = 158476, - [SMALL_STATE(2447)] = 158507, - [SMALL_STATE(2448)] = 158538, - [SMALL_STATE(2449)] = 158563, - [SMALL_STATE(2450)] = 158588, - [SMALL_STATE(2451)] = 158619, - [SMALL_STATE(2452)] = 158650, - [SMALL_STATE(2453)] = 158675, - [SMALL_STATE(2454)] = 158706, - [SMALL_STATE(2455)] = 158731, - [SMALL_STATE(2456)] = 158762, - [SMALL_STATE(2457)] = 158793, - [SMALL_STATE(2458)] = 158824, - [SMALL_STATE(2459)] = 158849, - [SMALL_STATE(2460)] = 158880, - [SMALL_STATE(2461)] = 158911, - [SMALL_STATE(2462)] = 158936, - [SMALL_STATE(2463)] = 158967, - [SMALL_STATE(2464)] = 158998, - [SMALL_STATE(2465)] = 159029, - [SMALL_STATE(2466)] = 159060, - [SMALL_STATE(2467)] = 159091, - [SMALL_STATE(2468)] = 159122, - [SMALL_STATE(2469)] = 159153, - [SMALL_STATE(2470)] = 159178, - [SMALL_STATE(2471)] = 159203, - [SMALL_STATE(2472)] = 159234, - [SMALL_STATE(2473)] = 159259, - [SMALL_STATE(2474)] = 159290, - [SMALL_STATE(2475)] = 159321, - [SMALL_STATE(2476)] = 159346, - [SMALL_STATE(2477)] = 159377, - [SMALL_STATE(2478)] = 159408, - [SMALL_STATE(2479)] = 159439, - [SMALL_STATE(2480)] = 159470, - [SMALL_STATE(2481)] = 159501, - [SMALL_STATE(2482)] = 159532, - [SMALL_STATE(2483)] = 159557, - [SMALL_STATE(2484)] = 159588, - [SMALL_STATE(2485)] = 159619, - [SMALL_STATE(2486)] = 159650, - [SMALL_STATE(2487)] = 159681, - [SMALL_STATE(2488)] = 159706, - [SMALL_STATE(2489)] = 159737, - [SMALL_STATE(2490)] = 159762, - [SMALL_STATE(2491)] = 159793, - [SMALL_STATE(2492)] = 159824, - [SMALL_STATE(2493)] = 159855, - [SMALL_STATE(2494)] = 159886, - [SMALL_STATE(2495)] = 159911, - [SMALL_STATE(2496)] = 159942, - [SMALL_STATE(2497)] = 159967, - [SMALL_STATE(2498)] = 159998, - [SMALL_STATE(2499)] = 160029, - [SMALL_STATE(2500)] = 160054, - [SMALL_STATE(2501)] = 160085, - [SMALL_STATE(2502)] = 160116, - [SMALL_STATE(2503)] = 160147, - [SMALL_STATE(2504)] = 160178, - [SMALL_STATE(2505)] = 160209, - [SMALL_STATE(2506)] = 160240, - [SMALL_STATE(2507)] = 160271, - [SMALL_STATE(2508)] = 160302, - [SMALL_STATE(2509)] = 160333, - [SMALL_STATE(2510)] = 160364, - [SMALL_STATE(2511)] = 160395, - [SMALL_STATE(2512)] = 160426, - [SMALL_STATE(2513)] = 160457, - [SMALL_STATE(2514)] = 160488, - [SMALL_STATE(2515)] = 160519, - [SMALL_STATE(2516)] = 160550, - [SMALL_STATE(2517)] = 160581, - [SMALL_STATE(2518)] = 160612, - [SMALL_STATE(2519)] = 160643, - [SMALL_STATE(2520)] = 160674, - [SMALL_STATE(2521)] = 160705, - [SMALL_STATE(2522)] = 160736, - [SMALL_STATE(2523)] = 160767, - [SMALL_STATE(2524)] = 160798, - [SMALL_STATE(2525)] = 160829, - [SMALL_STATE(2526)] = 160860, - [SMALL_STATE(2527)] = 160885, - [SMALL_STATE(2528)] = 160916, - [SMALL_STATE(2529)] = 160947, - [SMALL_STATE(2530)] = 160978, - [SMALL_STATE(2531)] = 161009, - [SMALL_STATE(2532)] = 161040, - [SMALL_STATE(2533)] = 161065, - [SMALL_STATE(2534)] = 161096, - [SMALL_STATE(2535)] = 161127, - [SMALL_STATE(2536)] = 161158, - [SMALL_STATE(2537)] = 161189, - [SMALL_STATE(2538)] = 161220, - [SMALL_STATE(2539)] = 161248, - [SMALL_STATE(2540)] = 161276, - [SMALL_STATE(2541)] = 161304, - [SMALL_STATE(2542)] = 161332, - [SMALL_STATE(2543)] = 161352, - [SMALL_STATE(2544)] = 161380, - [SMALL_STATE(2545)] = 161408, - [SMALL_STATE(2546)] = 161436, - [SMALL_STATE(2547)] = 161464, - [SMALL_STATE(2548)] = 161484, - [SMALL_STATE(2549)] = 161504, - [SMALL_STATE(2550)] = 161532, - [SMALL_STATE(2551)] = 161560, - [SMALL_STATE(2552)] = 161588, - [SMALL_STATE(2553)] = 161616, - [SMALL_STATE(2554)] = 161644, - [SMALL_STATE(2555)] = 161672, - [SMALL_STATE(2556)] = 161700, - [SMALL_STATE(2557)] = 161728, - [SMALL_STATE(2558)] = 161754, - [SMALL_STATE(2559)] = 161782, - [SMALL_STATE(2560)] = 161802, - [SMALL_STATE(2561)] = 161830, - [SMALL_STATE(2562)] = 161850, - [SMALL_STATE(2563)] = 161878, - [SMALL_STATE(2564)] = 161906, - [SMALL_STATE(2565)] = 161934, - [SMALL_STATE(2566)] = 161962, - [SMALL_STATE(2567)] = 161988, - [SMALL_STATE(2568)] = 162016, - [SMALL_STATE(2569)] = 162036, - [SMALL_STATE(2570)] = 162059, - [SMALL_STATE(2571)] = 162082, - [SMALL_STATE(2572)] = 162105, - [SMALL_STATE(2573)] = 162128, - [SMALL_STATE(2574)] = 162151, - [SMALL_STATE(2575)] = 162174, - [SMALL_STATE(2576)] = 162197, - [SMALL_STATE(2577)] = 162220, - [SMALL_STATE(2578)] = 162243, - [SMALL_STATE(2579)] = 162266, - [SMALL_STATE(2580)] = 162289, - [SMALL_STATE(2581)] = 162312, - [SMALL_STATE(2582)] = 162335, - [SMALL_STATE(2583)] = 162356, - [SMALL_STATE(2584)] = 162377, - [SMALL_STATE(2585)] = 162400, - [SMALL_STATE(2586)] = 162423, - [SMALL_STATE(2587)] = 162446, - [SMALL_STATE(2588)] = 162469, - [SMALL_STATE(2589)] = 162492, - [SMALL_STATE(2590)] = 162515, - [SMALL_STATE(2591)] = 162533, - [SMALL_STATE(2592)] = 162551, - [SMALL_STATE(2593)] = 162571, - [SMALL_STATE(2594)] = 162585, - [SMALL_STATE(2595)] = 162603, - [SMALL_STATE(2596)] = 162629, - [SMALL_STATE(2597)] = 162649, - [SMALL_STATE(2598)] = 162664, - [SMALL_STATE(2599)] = 162687, - [SMALL_STATE(2600)] = 162704, - [SMALL_STATE(2601)] = 162723, - [SMALL_STATE(2602)] = 162742, - [SMALL_STATE(2603)] = 162765, - [SMALL_STATE(2604)] = 162784, - [SMALL_STATE(2605)] = 162801, - [SMALL_STATE(2606)] = 162818, - [SMALL_STATE(2607)] = 162837, - [SMALL_STATE(2608)] = 162856, - [SMALL_STATE(2609)] = 162879, - [SMALL_STATE(2610)] = 162898, - [SMALL_STATE(2611)] = 162921, - [SMALL_STATE(2612)] = 162938, - [SMALL_STATE(2613)] = 162955, - [SMALL_STATE(2614)] = 162974, - [SMALL_STATE(2615)] = 162989, - [SMALL_STATE(2616)] = 163012, - [SMALL_STATE(2617)] = 163031, - [SMALL_STATE(2618)] = 163050, - [SMALL_STATE(2619)] = 163065, - [SMALL_STATE(2620)] = 163084, - [SMALL_STATE(2621)] = 163101, - [SMALL_STATE(2622)] = 163120, - [SMALL_STATE(2623)] = 163135, - [SMALL_STATE(2624)] = 163158, - [SMALL_STATE(2625)] = 163181, - [SMALL_STATE(2626)] = 163198, - [SMALL_STATE(2627)] = 163213, - [SMALL_STATE(2628)] = 163230, - [SMALL_STATE(2629)] = 163249, - [SMALL_STATE(2630)] = 163268, - [SMALL_STATE(2631)] = 163287, - [SMALL_STATE(2632)] = 163302, - [SMALL_STATE(2633)] = 163321, - [SMALL_STATE(2634)] = 163336, - [SMALL_STATE(2635)] = 163355, - [SMALL_STATE(2636)] = 163372, - [SMALL_STATE(2637)] = 163391, - [SMALL_STATE(2638)] = 163410, - [SMALL_STATE(2639)] = 163425, - [SMALL_STATE(2640)] = 163444, - [SMALL_STATE(2641)] = 163461, - [SMALL_STATE(2642)] = 163476, - [SMALL_STATE(2643)] = 163495, - [SMALL_STATE(2644)] = 163512, - [SMALL_STATE(2645)] = 163531, - [SMALL_STATE(2646)] = 163548, - [SMALL_STATE(2647)] = 163571, - [SMALL_STATE(2648)] = 163594, - [SMALL_STATE(2649)] = 163611, - [SMALL_STATE(2650)] = 163625, - [SMALL_STATE(2651)] = 163645, - [SMALL_STATE(2652)] = 163665, - [SMALL_STATE(2653)] = 163685, - [SMALL_STATE(2654)] = 163705, - [SMALL_STATE(2655)] = 163719, - [SMALL_STATE(2656)] = 163735, - [SMALL_STATE(2657)] = 163751, - [SMALL_STATE(2658)] = 163765, - [SMALL_STATE(2659)] = 163785, - [SMALL_STATE(2660)] = 163799, - [SMALL_STATE(2661)] = 163813, - [SMALL_STATE(2662)] = 163829, - [SMALL_STATE(2663)] = 163849, - [SMALL_STATE(2664)] = 163869, - [SMALL_STATE(2665)] = 163889, - [SMALL_STATE(2666)] = 163909, - [SMALL_STATE(2667)] = 163929, - [SMALL_STATE(2668)] = 163949, - [SMALL_STATE(2669)] = 163963, - [SMALL_STATE(2670)] = 163977, - [SMALL_STATE(2671)] = 163991, - [SMALL_STATE(2672)] = 164011, - [SMALL_STATE(2673)] = 164031, - [SMALL_STATE(2674)] = 164051, - [SMALL_STATE(2675)] = 164067, - [SMALL_STATE(2676)] = 164083, - [SMALL_STATE(2677)] = 164099, - [SMALL_STATE(2678)] = 164115, - [SMALL_STATE(2679)] = 164135, - [SMALL_STATE(2680)] = 164151, - [SMALL_STATE(2681)] = 164168, - [SMALL_STATE(2682)] = 164185, - [SMALL_STATE(2683)] = 164198, - [SMALL_STATE(2684)] = 164215, - [SMALL_STATE(2685)] = 164230, - [SMALL_STATE(2686)] = 164243, - [SMALL_STATE(2687)] = 164258, - [SMALL_STATE(2688)] = 164275, - [SMALL_STATE(2689)] = 164288, - [SMALL_STATE(2690)] = 164301, - [SMALL_STATE(2691)] = 164318, - [SMALL_STATE(2692)] = 164333, - [SMALL_STATE(2693)] = 164346, - [SMALL_STATE(2694)] = 164359, - [SMALL_STATE(2695)] = 164376, - [SMALL_STATE(2696)] = 164393, - [SMALL_STATE(2697)] = 164410, - [SMALL_STATE(2698)] = 164427, - [SMALL_STATE(2699)] = 164440, - [SMALL_STATE(2700)] = 164453, - [SMALL_STATE(2701)] = 164470, - [SMALL_STATE(2702)] = 164485, - [SMALL_STATE(2703)] = 164498, - [SMALL_STATE(2704)] = 164515, - [SMALL_STATE(2705)] = 164532, - [SMALL_STATE(2706)] = 164549, - [SMALL_STATE(2707)] = 164562, - [SMALL_STATE(2708)] = 164575, - [SMALL_STATE(2709)] = 164588, - [SMALL_STATE(2710)] = 164601, - [SMALL_STATE(2711)] = 164614, - [SMALL_STATE(2712)] = 164629, - [SMALL_STATE(2713)] = 164640, - [SMALL_STATE(2714)] = 164653, - [SMALL_STATE(2715)] = 164670, - [SMALL_STATE(2716)] = 164681, - [SMALL_STATE(2717)] = 164698, - [SMALL_STATE(2718)] = 164713, - [SMALL_STATE(2719)] = 164730, - [SMALL_STATE(2720)] = 164743, - [SMALL_STATE(2721)] = 164758, - [SMALL_STATE(2722)] = 164775, - [SMALL_STATE(2723)] = 164792, - [SMALL_STATE(2724)] = 164809, - [SMALL_STATE(2725)] = 164826, - [SMALL_STATE(2726)] = 164843, - [SMALL_STATE(2727)] = 164860, - [SMALL_STATE(2728)] = 164874, - [SMALL_STATE(2729)] = 164888, - [SMALL_STATE(2730)] = 164902, - [SMALL_STATE(2731)] = 164916, - [SMALL_STATE(2732)] = 164930, - [SMALL_STATE(2733)] = 164944, - [SMALL_STATE(2734)] = 164956, - [SMALL_STATE(2735)] = 164970, - [SMALL_STATE(2736)] = 164984, - [SMALL_STATE(2737)] = 164998, - [SMALL_STATE(2738)] = 165012, - [SMALL_STATE(2739)] = 165026, - [SMALL_STATE(2740)] = 165040, - [SMALL_STATE(2741)] = 165054, - [SMALL_STATE(2742)] = 165068, - [SMALL_STATE(2743)] = 165082, - [SMALL_STATE(2744)] = 165096, - [SMALL_STATE(2745)] = 165110, - [SMALL_STATE(2746)] = 165124, - [SMALL_STATE(2747)] = 165138, - [SMALL_STATE(2748)] = 165152, - [SMALL_STATE(2749)] = 165166, - [SMALL_STATE(2750)] = 165180, - [SMALL_STATE(2751)] = 165192, - [SMALL_STATE(2752)] = 165202, - [SMALL_STATE(2753)] = 165216, - [SMALL_STATE(2754)] = 165230, - [SMALL_STATE(2755)] = 165240, - [SMALL_STATE(2756)] = 165254, - [SMALL_STATE(2757)] = 165268, - [SMALL_STATE(2758)] = 165282, - [SMALL_STATE(2759)] = 165294, - [SMALL_STATE(2760)] = 165308, - [SMALL_STATE(2761)] = 165322, - [SMALL_STATE(2762)] = 165336, - [SMALL_STATE(2763)] = 165350, - [SMALL_STATE(2764)] = 165364, - [SMALL_STATE(2765)] = 165378, - [SMALL_STATE(2766)] = 165392, - [SMALL_STATE(2767)] = 165406, - [SMALL_STATE(2768)] = 165420, - [SMALL_STATE(2769)] = 165434, - [SMALL_STATE(2770)] = 165448, - [SMALL_STATE(2771)] = 165462, - [SMALL_STATE(2772)] = 165476, - [SMALL_STATE(2773)] = 165490, - [SMALL_STATE(2774)] = 165504, - [SMALL_STATE(2775)] = 165516, - [SMALL_STATE(2776)] = 165530, - [SMALL_STATE(2777)] = 165544, - [SMALL_STATE(2778)] = 165558, - [SMALL_STATE(2779)] = 165572, - [SMALL_STATE(2780)] = 165582, - [SMALL_STATE(2781)] = 165594, - [SMALL_STATE(2782)] = 165608, - [SMALL_STATE(2783)] = 165622, - [SMALL_STATE(2784)] = 165632, - [SMALL_STATE(2785)] = 165646, - [SMALL_STATE(2786)] = 165660, - [SMALL_STATE(2787)] = 165674, - [SMALL_STATE(2788)] = 165688, - [SMALL_STATE(2789)] = 165702, - [SMALL_STATE(2790)] = 165716, - [SMALL_STATE(2791)] = 165730, - [SMALL_STATE(2792)] = 165744, - [SMALL_STATE(2793)] = 165756, - [SMALL_STATE(2794)] = 165770, - [SMALL_STATE(2795)] = 165784, - [SMALL_STATE(2796)] = 165798, - [SMALL_STATE(2797)] = 165812, - [SMALL_STATE(2798)] = 165826, - [SMALL_STATE(2799)] = 165840, - [SMALL_STATE(2800)] = 165854, - [SMALL_STATE(2801)] = 165868, - [SMALL_STATE(2802)] = 165882, - [SMALL_STATE(2803)] = 165896, - [SMALL_STATE(2804)] = 165910, - [SMALL_STATE(2805)] = 165922, - [SMALL_STATE(2806)] = 165934, - [SMALL_STATE(2807)] = 165948, - [SMALL_STATE(2808)] = 165958, - [SMALL_STATE(2809)] = 165972, - [SMALL_STATE(2810)] = 165986, - [SMALL_STATE(2811)] = 166000, - [SMALL_STATE(2812)] = 166012, - [SMALL_STATE(2813)] = 166026, - [SMALL_STATE(2814)] = 166040, - [SMALL_STATE(2815)] = 166054, - [SMALL_STATE(2816)] = 166068, - [SMALL_STATE(2817)] = 166082, - [SMALL_STATE(2818)] = 166096, - [SMALL_STATE(2819)] = 166110, - [SMALL_STATE(2820)] = 166122, - [SMALL_STATE(2821)] = 166136, - [SMALL_STATE(2822)] = 166150, - [SMALL_STATE(2823)] = 166164, - [SMALL_STATE(2824)] = 166176, - [SMALL_STATE(2825)] = 166190, - [SMALL_STATE(2826)] = 166204, - [SMALL_STATE(2827)] = 166218, - [SMALL_STATE(2828)] = 166232, - [SMALL_STATE(2829)] = 166246, - [SMALL_STATE(2830)] = 166260, - [SMALL_STATE(2831)] = 166274, - [SMALL_STATE(2832)] = 166288, - [SMALL_STATE(2833)] = 166302, - [SMALL_STATE(2834)] = 166316, - [SMALL_STATE(2835)] = 166330, - [SMALL_STATE(2836)] = 166344, - [SMALL_STATE(2837)] = 166356, - [SMALL_STATE(2838)] = 166370, - [SMALL_STATE(2839)] = 166384, - [SMALL_STATE(2840)] = 166398, - [SMALL_STATE(2841)] = 166410, - [SMALL_STATE(2842)] = 166424, - [SMALL_STATE(2843)] = 166438, - [SMALL_STATE(2844)] = 166450, - [SMALL_STATE(2845)] = 166464, - [SMALL_STATE(2846)] = 166478, - [SMALL_STATE(2847)] = 166492, - [SMALL_STATE(2848)] = 166506, - [SMALL_STATE(2849)] = 166520, - [SMALL_STATE(2850)] = 166534, - [SMALL_STATE(2851)] = 166548, - [SMALL_STATE(2852)] = 166560, - [SMALL_STATE(2853)] = 166572, - [SMALL_STATE(2854)] = 166586, - [SMALL_STATE(2855)] = 166598, - [SMALL_STATE(2856)] = 166612, - [SMALL_STATE(2857)] = 166626, - [SMALL_STATE(2858)] = 166640, - [SMALL_STATE(2859)] = 166654, - [SMALL_STATE(2860)] = 166668, - [SMALL_STATE(2861)] = 166682, - [SMALL_STATE(2862)] = 166696, - [SMALL_STATE(2863)] = 166710, - [SMALL_STATE(2864)] = 166724, - [SMALL_STATE(2865)] = 166738, - [SMALL_STATE(2866)] = 166752, - [SMALL_STATE(2867)] = 166766, - [SMALL_STATE(2868)] = 166780, - [SMALL_STATE(2869)] = 166794, - [SMALL_STATE(2870)] = 166808, - [SMALL_STATE(2871)] = 166822, - [SMALL_STATE(2872)] = 166836, - [SMALL_STATE(2873)] = 166848, - [SMALL_STATE(2874)] = 166860, - [SMALL_STATE(2875)] = 166874, - [SMALL_STATE(2876)] = 166888, - [SMALL_STATE(2877)] = 166902, - [SMALL_STATE(2878)] = 166916, - [SMALL_STATE(2879)] = 166930, - [SMALL_STATE(2880)] = 166944, - [SMALL_STATE(2881)] = 166958, - [SMALL_STATE(2882)] = 166972, - [SMALL_STATE(2883)] = 166986, - [SMALL_STATE(2884)] = 167000, - [SMALL_STATE(2885)] = 167014, - [SMALL_STATE(2886)] = 167028, - [SMALL_STATE(2887)] = 167042, - [SMALL_STATE(2888)] = 167056, - [SMALL_STATE(2889)] = 167070, - [SMALL_STATE(2890)] = 167084, - [SMALL_STATE(2891)] = 167098, - [SMALL_STATE(2892)] = 167110, - [SMALL_STATE(2893)] = 167124, - [SMALL_STATE(2894)] = 167136, - [SMALL_STATE(2895)] = 167150, - [SMALL_STATE(2896)] = 167161, - [SMALL_STATE(2897)] = 167172, - [SMALL_STATE(2898)] = 167183, - [SMALL_STATE(2899)] = 167194, - [SMALL_STATE(2900)] = 167205, - [SMALL_STATE(2901)] = 167216, - [SMALL_STATE(2902)] = 167227, - [SMALL_STATE(2903)] = 167238, - [SMALL_STATE(2904)] = 167249, - [SMALL_STATE(2905)] = 167260, - [SMALL_STATE(2906)] = 167271, - [SMALL_STATE(2907)] = 167282, - [SMALL_STATE(2908)] = 167293, - [SMALL_STATE(2909)] = 167304, - [SMALL_STATE(2910)] = 167315, - [SMALL_STATE(2911)] = 167326, - [SMALL_STATE(2912)] = 167337, - [SMALL_STATE(2913)] = 167348, - [SMALL_STATE(2914)] = 167359, - [SMALL_STATE(2915)] = 167370, - [SMALL_STATE(2916)] = 167381, - [SMALL_STATE(2917)] = 167390, - [SMALL_STATE(2918)] = 167401, - [SMALL_STATE(2919)] = 167412, - [SMALL_STATE(2920)] = 167421, - [SMALL_STATE(2921)] = 167432, - [SMALL_STATE(2922)] = 167443, - [SMALL_STATE(2923)] = 167454, - [SMALL_STATE(2924)] = 167465, - [SMALL_STATE(2925)] = 167476, - [SMALL_STATE(2926)] = 167487, - [SMALL_STATE(2927)] = 167498, - [SMALL_STATE(2928)] = 167509, - [SMALL_STATE(2929)] = 167520, - [SMALL_STATE(2930)] = 167529, - [SMALL_STATE(2931)] = 167540, - [SMALL_STATE(2932)] = 167551, - [SMALL_STATE(2933)] = 167562, - [SMALL_STATE(2934)] = 167571, - [SMALL_STATE(2935)] = 167580, - [SMALL_STATE(2936)] = 167591, - [SMALL_STATE(2937)] = 167602, - [SMALL_STATE(2938)] = 167613, - [SMALL_STATE(2939)] = 167624, - [SMALL_STATE(2940)] = 167635, - [SMALL_STATE(2941)] = 167646, - [SMALL_STATE(2942)] = 167657, - [SMALL_STATE(2943)] = 167668, - [SMALL_STATE(2944)] = 167679, - [SMALL_STATE(2945)] = 167690, - [SMALL_STATE(2946)] = 167701, - [SMALL_STATE(2947)] = 167712, - [SMALL_STATE(2948)] = 167723, - [SMALL_STATE(2949)] = 167734, - [SMALL_STATE(2950)] = 167745, - [SMALL_STATE(2951)] = 167756, - [SMALL_STATE(2952)] = 167767, - [SMALL_STATE(2953)] = 167778, - [SMALL_STATE(2954)] = 167789, - [SMALL_STATE(2955)] = 167800, - [SMALL_STATE(2956)] = 167811, - [SMALL_STATE(2957)] = 167822, - [SMALL_STATE(2958)] = 167833, - [SMALL_STATE(2959)] = 167844, - [SMALL_STATE(2960)] = 167855, - [SMALL_STATE(2961)] = 167866, - [SMALL_STATE(2962)] = 167874, - [SMALL_STATE(2963)] = 167882, - [SMALL_STATE(2964)] = 167890, - [SMALL_STATE(2965)] = 167898, - [SMALL_STATE(2966)] = 167906, - [SMALL_STATE(2967)] = 167914, - [SMALL_STATE(2968)] = 167922, - [SMALL_STATE(2969)] = 167930, - [SMALL_STATE(2970)] = 167938, - [SMALL_STATE(2971)] = 167946, - [SMALL_STATE(2972)] = 167954, - [SMALL_STATE(2973)] = 167962, - [SMALL_STATE(2974)] = 167970, - [SMALL_STATE(2975)] = 167978, - [SMALL_STATE(2976)] = 167986, - [SMALL_STATE(2977)] = 167994, - [SMALL_STATE(2978)] = 168002, - [SMALL_STATE(2979)] = 168010, - [SMALL_STATE(2980)] = 168018, - [SMALL_STATE(2981)] = 168026, - [SMALL_STATE(2982)] = 168034, - [SMALL_STATE(2983)] = 168042, - [SMALL_STATE(2984)] = 168050, - [SMALL_STATE(2985)] = 168058, - [SMALL_STATE(2986)] = 168066, - [SMALL_STATE(2987)] = 168074, - [SMALL_STATE(2988)] = 168082, - [SMALL_STATE(2989)] = 168090, - [SMALL_STATE(2990)] = 168098, - [SMALL_STATE(2991)] = 168106, - [SMALL_STATE(2992)] = 168114, - [SMALL_STATE(2993)] = 168122, - [SMALL_STATE(2994)] = 168130, - [SMALL_STATE(2995)] = 168138, - [SMALL_STATE(2996)] = 168146, - [SMALL_STATE(2997)] = 168154, - [SMALL_STATE(2998)] = 168162, - [SMALL_STATE(2999)] = 168170, - [SMALL_STATE(3000)] = 168178, - [SMALL_STATE(3001)] = 168186, - [SMALL_STATE(3002)] = 168194, - [SMALL_STATE(3003)] = 168202, - [SMALL_STATE(3004)] = 168210, - [SMALL_STATE(3005)] = 168218, - [SMALL_STATE(3006)] = 168226, - [SMALL_STATE(3007)] = 168234, - [SMALL_STATE(3008)] = 168242, - [SMALL_STATE(3009)] = 168250, - [SMALL_STATE(3010)] = 168258, - [SMALL_STATE(3011)] = 168266, - [SMALL_STATE(3012)] = 168274, - [SMALL_STATE(3013)] = 168282, - [SMALL_STATE(3014)] = 168290, - [SMALL_STATE(3015)] = 168298, - [SMALL_STATE(3016)] = 168306, - [SMALL_STATE(3017)] = 168314, - [SMALL_STATE(3018)] = 168322, - [SMALL_STATE(3019)] = 168330, - [SMALL_STATE(3020)] = 168338, - [SMALL_STATE(3021)] = 168346, - [SMALL_STATE(3022)] = 168354, - [SMALL_STATE(3023)] = 168362, - [SMALL_STATE(3024)] = 168370, - [SMALL_STATE(3025)] = 168378, - [SMALL_STATE(3026)] = 168386, - [SMALL_STATE(3027)] = 168394, - [SMALL_STATE(3028)] = 168402, - [SMALL_STATE(3029)] = 168410, - [SMALL_STATE(3030)] = 168418, - [SMALL_STATE(3031)] = 168426, - [SMALL_STATE(3032)] = 168434, - [SMALL_STATE(3033)] = 168442, - [SMALL_STATE(3034)] = 168450, - [SMALL_STATE(3035)] = 168458, - [SMALL_STATE(3036)] = 168466, - [SMALL_STATE(3037)] = 168474, - [SMALL_STATE(3038)] = 168482, - [SMALL_STATE(3039)] = 168490, - [SMALL_STATE(3040)] = 168498, - [SMALL_STATE(3041)] = 168506, - [SMALL_STATE(3042)] = 168514, - [SMALL_STATE(3043)] = 168522, - [SMALL_STATE(3044)] = 168530, - [SMALL_STATE(3045)] = 168538, - [SMALL_STATE(3046)] = 168546, - [SMALL_STATE(3047)] = 168554, - [SMALL_STATE(3048)] = 168562, - [SMALL_STATE(3049)] = 168570, - [SMALL_STATE(3050)] = 168578, - [SMALL_STATE(3051)] = 168586, - [SMALL_STATE(3052)] = 168594, - [SMALL_STATE(3053)] = 168602, - [SMALL_STATE(3054)] = 168610, - [SMALL_STATE(3055)] = 168618, - [SMALL_STATE(3056)] = 168626, - [SMALL_STATE(3057)] = 168634, - [SMALL_STATE(3058)] = 168642, - [SMALL_STATE(3059)] = 168650, - [SMALL_STATE(3060)] = 168658, - [SMALL_STATE(3061)] = 168666, - [SMALL_STATE(3062)] = 168674, - [SMALL_STATE(3063)] = 168682, - [SMALL_STATE(3064)] = 168690, - [SMALL_STATE(3065)] = 168698, - [SMALL_STATE(3066)] = 168706, - [SMALL_STATE(3067)] = 168714, - [SMALL_STATE(3068)] = 168722, - [SMALL_STATE(3069)] = 168730, - [SMALL_STATE(3070)] = 168738, - [SMALL_STATE(3071)] = 168746, - [SMALL_STATE(3072)] = 168754, - [SMALL_STATE(3073)] = 168762, - [SMALL_STATE(3074)] = 168770, - [SMALL_STATE(3075)] = 168778, - [SMALL_STATE(3076)] = 168786, - [SMALL_STATE(3077)] = 168794, - [SMALL_STATE(3078)] = 168802, - [SMALL_STATE(3079)] = 168810, - [SMALL_STATE(3080)] = 168818, - [SMALL_STATE(3081)] = 168826, - [SMALL_STATE(3082)] = 168834, - [SMALL_STATE(3083)] = 168842, - [SMALL_STATE(3084)] = 168850, - [SMALL_STATE(3085)] = 168858, - [SMALL_STATE(3086)] = 168866, - [SMALL_STATE(3087)] = 168874, - [SMALL_STATE(3088)] = 168882, - [SMALL_STATE(3089)] = 168890, - [SMALL_STATE(3090)] = 168898, - [SMALL_STATE(3091)] = 168906, - [SMALL_STATE(3092)] = 168914, - [SMALL_STATE(3093)] = 168922, - [SMALL_STATE(3094)] = 168930, - [SMALL_STATE(3095)] = 168938, - [SMALL_STATE(3096)] = 168946, - [SMALL_STATE(3097)] = 168954, - [SMALL_STATE(3098)] = 168962, - [SMALL_STATE(3099)] = 168970, - [SMALL_STATE(3100)] = 168978, - [SMALL_STATE(3101)] = 168986, - [SMALL_STATE(3102)] = 168994, - [SMALL_STATE(3103)] = 169002, - [SMALL_STATE(3104)] = 169010, - [SMALL_STATE(3105)] = 169018, - [SMALL_STATE(3106)] = 169026, - [SMALL_STATE(3107)] = 169034, - [SMALL_STATE(3108)] = 169042, - [SMALL_STATE(3109)] = 169050, - [SMALL_STATE(3110)] = 169058, - [SMALL_STATE(3111)] = 169066, - [SMALL_STATE(3112)] = 169074, - [SMALL_STATE(3113)] = 169082, - [SMALL_STATE(3114)] = 169090, - [SMALL_STATE(3115)] = 169098, - [SMALL_STATE(3116)] = 169106, - [SMALL_STATE(3117)] = 169114, - [SMALL_STATE(3118)] = 169122, - [SMALL_STATE(3119)] = 169130, - [SMALL_STATE(3120)] = 169138, - [SMALL_STATE(3121)] = 169146, - [SMALL_STATE(3122)] = 169154, - [SMALL_STATE(3123)] = 169162, - [SMALL_STATE(3124)] = 169170, - [SMALL_STATE(3125)] = 169178, - [SMALL_STATE(3126)] = 169186, - [SMALL_STATE(3127)] = 169194, - [SMALL_STATE(3128)] = 169202, - [SMALL_STATE(3129)] = 169210, - [SMALL_STATE(3130)] = 169218, - [SMALL_STATE(3131)] = 169226, - [SMALL_STATE(3132)] = 169234, - [SMALL_STATE(3133)] = 169242, - [SMALL_STATE(3134)] = 169250, - [SMALL_STATE(3135)] = 169258, - [SMALL_STATE(3136)] = 169266, - [SMALL_STATE(3137)] = 169274, - [SMALL_STATE(3138)] = 169282, - [SMALL_STATE(3139)] = 169290, - [SMALL_STATE(3140)] = 169298, - [SMALL_STATE(3141)] = 169306, - [SMALL_STATE(3142)] = 169314, - [SMALL_STATE(3143)] = 169322, - [SMALL_STATE(3144)] = 169330, - [SMALL_STATE(3145)] = 169338, - [SMALL_STATE(3146)] = 169346, - [SMALL_STATE(3147)] = 169354, - [SMALL_STATE(3148)] = 169362, - [SMALL_STATE(3149)] = 169370, - [SMALL_STATE(3150)] = 169378, - [SMALL_STATE(3151)] = 169386, - [SMALL_STATE(3152)] = 169394, - [SMALL_STATE(3153)] = 169402, - [SMALL_STATE(3154)] = 169410, - [SMALL_STATE(3155)] = 169418, - [SMALL_STATE(3156)] = 169426, - [SMALL_STATE(3157)] = 169434, - [SMALL_STATE(3158)] = 169442, - [SMALL_STATE(3159)] = 169450, - [SMALL_STATE(3160)] = 169458, - [SMALL_STATE(3161)] = 169466, - [SMALL_STATE(3162)] = 169474, - [SMALL_STATE(3163)] = 169482, - [SMALL_STATE(3164)] = 169490, - [SMALL_STATE(3165)] = 169498, - [SMALL_STATE(3166)] = 169506, - [SMALL_STATE(3167)] = 169514, - [SMALL_STATE(3168)] = 169522, - [SMALL_STATE(3169)] = 169530, - [SMALL_STATE(3170)] = 169538, - [SMALL_STATE(3171)] = 169546, - [SMALL_STATE(3172)] = 169554, - [SMALL_STATE(3173)] = 169562, - [SMALL_STATE(3174)] = 169570, - [SMALL_STATE(3175)] = 169578, - [SMALL_STATE(3176)] = 169586, - [SMALL_STATE(3177)] = 169594, - [SMALL_STATE(3178)] = 169602, - [SMALL_STATE(3179)] = 169610, - [SMALL_STATE(3180)] = 169618, - [SMALL_STATE(3181)] = 169626, - [SMALL_STATE(3182)] = 169634, - [SMALL_STATE(3183)] = 169642, - [SMALL_STATE(3184)] = 169650, - [SMALL_STATE(3185)] = 169658, - [SMALL_STATE(3186)] = 169666, - [SMALL_STATE(3187)] = 169674, - [SMALL_STATE(3188)] = 169682, - [SMALL_STATE(3189)] = 169690, - [SMALL_STATE(3190)] = 169698, - [SMALL_STATE(3191)] = 169706, - [SMALL_STATE(3192)] = 169714, - [SMALL_STATE(3193)] = 169722, - [SMALL_STATE(3194)] = 169730, - [SMALL_STATE(3195)] = 169738, - [SMALL_STATE(3196)] = 169746, - [SMALL_STATE(3197)] = 169754, - [SMALL_STATE(3198)] = 169762, - [SMALL_STATE(3199)] = 169770, - [SMALL_STATE(3200)] = 169778, - [SMALL_STATE(3201)] = 169786, - [SMALL_STATE(3202)] = 169794, - [SMALL_STATE(3203)] = 169802, - [SMALL_STATE(3204)] = 169810, - [SMALL_STATE(3205)] = 169818, - [SMALL_STATE(3206)] = 169826, - [SMALL_STATE(3207)] = 169834, - [SMALL_STATE(3208)] = 169842, - [SMALL_STATE(3209)] = 169850, - [SMALL_STATE(3210)] = 169858, - [SMALL_STATE(3211)] = 169866, - [SMALL_STATE(3212)] = 169874, - [SMALL_STATE(3213)] = 169882, - [SMALL_STATE(3214)] = 169890, - [SMALL_STATE(3215)] = 169898, - [SMALL_STATE(3216)] = 169906, - [SMALL_STATE(3217)] = 169914, - [SMALL_STATE(3218)] = 169922, - [SMALL_STATE(3219)] = 169930, - [SMALL_STATE(3220)] = 169938, - [SMALL_STATE(3221)] = 169946, - [SMALL_STATE(3222)] = 169954, - [SMALL_STATE(3223)] = 169962, - [SMALL_STATE(3224)] = 169970, - [SMALL_STATE(3225)] = 169978, - [SMALL_STATE(3226)] = 169986, - [SMALL_STATE(3227)] = 169994, - [SMALL_STATE(3228)] = 170002, - [SMALL_STATE(3229)] = 170010, - [SMALL_STATE(3230)] = 170018, - [SMALL_STATE(3231)] = 170026, - [SMALL_STATE(3232)] = 170034, - [SMALL_STATE(3233)] = 170042, - [SMALL_STATE(3234)] = 170050, - [SMALL_STATE(3235)] = 170058, - [SMALL_STATE(3236)] = 170066, - [SMALL_STATE(3237)] = 170074, - [SMALL_STATE(3238)] = 170082, - [SMALL_STATE(3239)] = 170090, - [SMALL_STATE(3240)] = 170098, - [SMALL_STATE(3241)] = 170106, - [SMALL_STATE(3242)] = 170114, - [SMALL_STATE(3243)] = 170122, - [SMALL_STATE(3244)] = 170130, - [SMALL_STATE(3245)] = 170138, - [SMALL_STATE(3246)] = 170146, - [SMALL_STATE(3247)] = 170154, - [SMALL_STATE(3248)] = 170162, - [SMALL_STATE(3249)] = 170170, - [SMALL_STATE(3250)] = 170178, - [SMALL_STATE(3251)] = 170186, - [SMALL_STATE(3252)] = 170194, - [SMALL_STATE(3253)] = 170202, - [SMALL_STATE(3254)] = 170210, - [SMALL_STATE(3255)] = 170218, - [SMALL_STATE(3256)] = 170226, - [SMALL_STATE(3257)] = 170234, - [SMALL_STATE(3258)] = 170242, - [SMALL_STATE(3259)] = 170250, - [SMALL_STATE(3260)] = 170258, - [SMALL_STATE(3261)] = 170266, - [SMALL_STATE(3262)] = 170274, - [SMALL_STATE(3263)] = 170282, - [SMALL_STATE(3264)] = 170290, - [SMALL_STATE(3265)] = 170298, - [SMALL_STATE(3266)] = 170305, - [SMALL_STATE(3267)] = 170312, - [SMALL_STATE(3268)] = 170319, - [SMALL_STATE(3269)] = 170326, - [SMALL_STATE(3270)] = 170333, - [SMALL_STATE(3271)] = 170340, - [SMALL_STATE(3272)] = 170347, - [SMALL_STATE(3273)] = 170354, - [SMALL_STATE(3274)] = 170361, - [SMALL_STATE(3275)] = 170368, - [SMALL_STATE(3276)] = 170375, - [SMALL_STATE(3277)] = 170382, - [SMALL_STATE(3278)] = 170389, - [SMALL_STATE(3279)] = 170396, - [SMALL_STATE(3280)] = 170403, - [SMALL_STATE(3281)] = 170410, - [SMALL_STATE(3282)] = 170417, - [SMALL_STATE(3283)] = 170424, - [SMALL_STATE(3284)] = 170431, - [SMALL_STATE(3285)] = 170438, - [SMALL_STATE(3286)] = 170445, - [SMALL_STATE(3287)] = 170452, - [SMALL_STATE(3288)] = 170459, + [SMALL_STATE(116)] = 0, + [SMALL_STATE(117)] = 125, + [SMALL_STATE(118)] = 204, + [SMALL_STATE(119)] = 325, + [SMALL_STATE(120)] = 446, + [SMALL_STATE(121)] = 569, + [SMALL_STATE(122)] = 690, + [SMALL_STATE(123)] = 811, + [SMALL_STATE(124)] = 932, + [SMALL_STATE(125)] = 1053, + [SMALL_STATE(126)] = 1176, + [SMALL_STATE(127)] = 1297, + [SMALL_STATE(128)] = 1418, + [SMALL_STATE(129)] = 1539, + [SMALL_STATE(130)] = 1662, + [SMALL_STATE(131)] = 1741, + [SMALL_STATE(132)] = 1862, + [SMALL_STATE(133)] = 1983, + [SMALL_STATE(134)] = 2106, + [SMALL_STATE(135)] = 2227, + [SMALL_STATE(136)] = 2348, + [SMALL_STATE(137)] = 2469, + [SMALL_STATE(138)] = 2592, + [SMALL_STATE(139)] = 2713, + [SMALL_STATE(140)] = 2834, + [SMALL_STATE(141)] = 2957, + [SMALL_STATE(142)] = 3036, + [SMALL_STATE(143)] = 3159, + [SMALL_STATE(144)] = 3238, + [SMALL_STATE(145)] = 3361, + [SMALL_STATE(146)] = 3482, + [SMALL_STATE(147)] = 3561, + [SMALL_STATE(148)] = 3682, + [SMALL_STATE(149)] = 3761, + [SMALL_STATE(150)] = 3884, + [SMALL_STATE(151)] = 4004, + [SMALL_STATE(152)] = 4124, + [SMALL_STATE(153)] = 4244, + [SMALL_STATE(154)] = 4364, + [SMALL_STATE(155)] = 4484, + [SMALL_STATE(156)] = 4604, + [SMALL_STATE(157)] = 4724, + [SMALL_STATE(158)] = 4844, + [SMALL_STATE(159)] = 4964, + [SMALL_STATE(160)] = 5084, + [SMALL_STATE(161)] = 5204, + [SMALL_STATE(162)] = 5324, + [SMALL_STATE(163)] = 5444, + [SMALL_STATE(164)] = 5564, + [SMALL_STATE(165)] = 5684, + [SMALL_STATE(166)] = 5802, + [SMALL_STATE(167)] = 5922, + [SMALL_STATE(168)] = 6042, + [SMALL_STATE(169)] = 6162, + [SMALL_STATE(170)] = 6282, + [SMALL_STATE(171)] = 6402, + [SMALL_STATE(172)] = 6520, + [SMALL_STATE(173)] = 6640, + [SMALL_STATE(174)] = 6760, + [SMALL_STATE(175)] = 6878, + [SMALL_STATE(176)] = 6998, + [SMALL_STATE(177)] = 7118, + [SMALL_STATE(178)] = 7238, + [SMALL_STATE(179)] = 7358, + [SMALL_STATE(180)] = 7478, + [SMALL_STATE(181)] = 7598, + [SMALL_STATE(182)] = 7718, + [SMALL_STATE(183)] = 7838, + [SMALL_STATE(184)] = 7958, + [SMALL_STATE(185)] = 8078, + [SMALL_STATE(186)] = 8198, + [SMALL_STATE(187)] = 8318, + [SMALL_STATE(188)] = 8438, + [SMALL_STATE(189)] = 8558, + [SMALL_STATE(190)] = 8629, + [SMALL_STATE(191)] = 8736, + [SMALL_STATE(192)] = 8811, + [SMALL_STATE(193)] = 8890, + [SMALL_STATE(194)] = 8969, + [SMALL_STATE(195)] = 9044, + [SMALL_STATE(196)] = 9115, + [SMALL_STATE(197)] = 9198, + [SMALL_STATE(198)] = 9315, + [SMALL_STATE(199)] = 9394, + [SMALL_STATE(200)] = 9477, + [SMALL_STATE(201)] = 9594, + [SMALL_STATE(202)] = 9699, + [SMALL_STATE(203)] = 9812, + [SMALL_STATE(204)] = 9925, + [SMALL_STATE(205)] = 10038, + [SMALL_STATE(206)] = 10151, + [SMALL_STATE(207)] = 10268, + [SMALL_STATE(208)] = 10381, + [SMALL_STATE(209)] = 10494, + [SMALL_STATE(210)] = 10607, + [SMALL_STATE(211)] = 10720, + [SMALL_STATE(212)] = 10791, + [SMALL_STATE(213)] = 10862, + [SMALL_STATE(214)] = 10975, + [SMALL_STATE(215)] = 11046, + [SMALL_STATE(216)] = 11125, + [SMALL_STATE(217)] = 11238, + [SMALL_STATE(218)] = 11351, + [SMALL_STATE(219)] = 11464, + [SMALL_STATE(220)] = 11577, + [SMALL_STATE(221)] = 11694, + [SMALL_STATE(222)] = 11807, + [SMALL_STATE(223)] = 11924, + [SMALL_STATE(224)] = 12037, + [SMALL_STATE(225)] = 12108, + [SMALL_STATE(226)] = 12225, + [SMALL_STATE(227)] = 12342, + [SMALL_STATE(228)] = 12455, + [SMALL_STATE(229)] = 12568, + [SMALL_STATE(230)] = 12681, + [SMALL_STATE(231)] = 12794, + [SMALL_STATE(232)] = 12907, + [SMALL_STATE(233)] = 12980, + [SMALL_STATE(234)] = 13053, + [SMALL_STATE(235)] = 13166, + [SMALL_STATE(236)] = 13239, + [SMALL_STATE(237)] = 13352, + [SMALL_STATE(238)] = 13427, + [SMALL_STATE(239)] = 13498, + [SMALL_STATE(240)] = 13611, + [SMALL_STATE(241)] = 13724, + [SMALL_STATE(242)] = 13837, + [SMALL_STATE(243)] = 13950, + [SMALL_STATE(244)] = 14063, + [SMALL_STATE(245)] = 14176, + [SMALL_STATE(246)] = 14289, + [SMALL_STATE(247)] = 14402, + [SMALL_STATE(248)] = 14515, + [SMALL_STATE(249)] = 14628, + [SMALL_STATE(250)] = 14741, + [SMALL_STATE(251)] = 14814, + [SMALL_STATE(252)] = 14927, + [SMALL_STATE(253)] = 15000, + [SMALL_STATE(254)] = 15073, + [SMALL_STATE(255)] = 15186, + [SMALL_STATE(256)] = 15299, + [SMALL_STATE(257)] = 15412, + [SMALL_STATE(258)] = 15525, + [SMALL_STATE(259)] = 15632, + [SMALL_STATE(260)] = 15745, + [SMALL_STATE(261)] = 15858, + [SMALL_STATE(262)] = 15971, + [SMALL_STATE(263)] = 16084, + [SMALL_STATE(264)] = 16197, + [SMALL_STATE(265)] = 16310, + [SMALL_STATE(266)] = 16417, + [SMALL_STATE(267)] = 16530, + [SMALL_STATE(268)] = 16635, + [SMALL_STATE(269)] = 16708, + [SMALL_STATE(270)] = 16821, + [SMALL_STATE(271)] = 16902, + [SMALL_STATE(272)] = 17015, + [SMALL_STATE(273)] = 17086, + [SMALL_STATE(274)] = 17199, + [SMALL_STATE(275)] = 17312, + [SMALL_STATE(276)] = 17425, + [SMALL_STATE(277)] = 17514, + [SMALL_STATE(278)] = 17599, + [SMALL_STATE(279)] = 17712, + [SMALL_STATE(280)] = 17825, + [SMALL_STATE(281)] = 17938, + [SMALL_STATE(282)] = 18051, + [SMALL_STATE(283)] = 18164, + [SMALL_STATE(284)] = 18277, + [SMALL_STATE(285)] = 18368, + [SMALL_STATE(286)] = 18481, + [SMALL_STATE(287)] = 18598, + [SMALL_STATE(288)] = 18669, + [SMALL_STATE(289)] = 18774, + [SMALL_STATE(290)] = 18887, + [SMALL_STATE(291)] = 19000, + [SMALL_STATE(292)] = 19113, + [SMALL_STATE(293)] = 19226, + [SMALL_STATE(294)] = 19339, + [SMALL_STATE(295)] = 19432, + [SMALL_STATE(296)] = 19513, + [SMALL_STATE(297)] = 19626, + [SMALL_STATE(298)] = 19739, + [SMALL_STATE(299)] = 19824, + [SMALL_STATE(300)] = 19937, + [SMALL_STATE(301)] = 20050, + [SMALL_STATE(302)] = 20163, + [SMALL_STATE(303)] = 20258, + [SMALL_STATE(304)] = 20345, + [SMALL_STATE(305)] = 20428, + [SMALL_STATE(306)] = 20499, + [SMALL_STATE(307)] = 20612, + [SMALL_STATE(308)] = 20725, + [SMALL_STATE(309)] = 20838, + [SMALL_STATE(310)] = 20951, + [SMALL_STATE(311)] = 21068, + [SMALL_STATE(312)] = 21185, + [SMALL_STATE(313)] = 21256, + [SMALL_STATE(314)] = 21369, + [SMALL_STATE(315)] = 21440, + [SMALL_STATE(316)] = 21511, + [SMALL_STATE(317)] = 21624, + [SMALL_STATE(318)] = 21737, + [SMALL_STATE(319)] = 21810, + [SMALL_STATE(320)] = 21927, + [SMALL_STATE(321)] = 21998, + [SMALL_STATE(322)] = 22069, + [SMALL_STATE(323)] = 22182, + [SMALL_STATE(324)] = 22253, + [SMALL_STATE(325)] = 22324, + [SMALL_STATE(326)] = 22441, + [SMALL_STATE(327)] = 22554, + [SMALL_STATE(328)] = 22671, + [SMALL_STATE(329)] = 22742, + [SMALL_STATE(330)] = 22859, + [SMALL_STATE(331)] = 22972, + [SMALL_STATE(332)] = 23043, + [SMALL_STATE(333)] = 23156, + [SMALL_STATE(334)] = 23269, + [SMALL_STATE(335)] = 23382, + [SMALL_STATE(336)] = 23499, + [SMALL_STATE(337)] = 23612, + [SMALL_STATE(338)] = 23727, + [SMALL_STATE(339)] = 23840, + [SMALL_STATE(340)] = 23913, + [SMALL_STATE(341)] = 24018, + [SMALL_STATE(342)] = 24133, + [SMALL_STATE(343)] = 24250, + [SMALL_STATE(344)] = 24367, + [SMALL_STATE(345)] = 24442, + [SMALL_STATE(346)] = 24559, + [SMALL_STATE(347)] = 24676, + [SMALL_STATE(348)] = 24759, + [SMALL_STATE(349)] = 24876, + [SMALL_STATE(350)] = 24947, + [SMALL_STATE(351)] = 25064, + [SMALL_STATE(352)] = 25135, + [SMALL_STATE(353)] = 25248, + [SMALL_STATE(354)] = 25319, + [SMALL_STATE(355)] = 25432, + [SMALL_STATE(356)] = 25539, + [SMALL_STATE(357)] = 25612, + [SMALL_STATE(358)] = 25729, + [SMALL_STATE(359)] = 25804, + [SMALL_STATE(360)] = 25879, + [SMALL_STATE(361)] = 25996, + [SMALL_STATE(362)] = 26113, + [SMALL_STATE(363)] = 26226, + [SMALL_STATE(364)] = 26343, + [SMALL_STATE(365)] = 26458, + [SMALL_STATE(366)] = 26533, + [SMALL_STATE(367)] = 26616, + [SMALL_STATE(368)] = 26733, + [SMALL_STATE(369)] = 26816, + [SMALL_STATE(370)] = 26903, + [SMALL_STATE(371)] = 26998, + [SMALL_STATE(372)] = 27091, + [SMALL_STATE(373)] = 27182, + [SMALL_STATE(374)] = 27271, + [SMALL_STATE(375)] = 27384, + [SMALL_STATE(376)] = 27455, + [SMALL_STATE(377)] = 27572, + [SMALL_STATE(378)] = 27643, + [SMALL_STATE(379)] = 27750, + [SMALL_STATE(380)] = 27867, + [SMALL_STATE(381)] = 27974, + [SMALL_STATE(382)] = 28091, + [SMALL_STATE(383)] = 28162, + [SMALL_STATE(384)] = 28275, + [SMALL_STATE(385)] = 28346, + [SMALL_STATE(386)] = 28417, + [SMALL_STATE(387)] = 28492, + [SMALL_STATE(388)] = 28563, + [SMALL_STATE(389)] = 28634, + [SMALL_STATE(390)] = 28705, + [SMALL_STATE(391)] = 28818, + [SMALL_STATE(392)] = 28931, + [SMALL_STATE(393)] = 28999, + [SMALL_STATE(394)] = 29077, + [SMALL_STATE(395)] = 29145, + [SMALL_STATE(396)] = 29259, + [SMALL_STATE(397)] = 29327, + [SMALL_STATE(398)] = 29405, + [SMALL_STATE(399)] = 29475, + [SMALL_STATE(400)] = 29543, + [SMALL_STATE(401)] = 29611, + [SMALL_STATE(402)] = 29679, + [SMALL_STATE(403)] = 29747, + [SMALL_STATE(404)] = 29815, + [SMALL_STATE(405)] = 29883, + [SMALL_STATE(406)] = 29951, + [SMALL_STATE(407)] = 30021, + [SMALL_STATE(408)] = 30089, + [SMALL_STATE(409)] = 30203, + [SMALL_STATE(410)] = 30271, + [SMALL_STATE(411)] = 30339, + [SMALL_STATE(412)] = 30407, + [SMALL_STATE(413)] = 30475, + [SMALL_STATE(414)] = 30543, + [SMALL_STATE(415)] = 30611, + [SMALL_STATE(416)] = 30679, + [SMALL_STATE(417)] = 30757, + [SMALL_STATE(418)] = 30825, + [SMALL_STATE(419)] = 30903, + [SMALL_STATE(420)] = 30973, + [SMALL_STATE(421)] = 31043, + [SMALL_STATE(422)] = 31113, + [SMALL_STATE(423)] = 31183, + [SMALL_STATE(424)] = 31253, + [SMALL_STATE(425)] = 31321, + [SMALL_STATE(426)] = 31391, + [SMALL_STATE(427)] = 31459, + [SMALL_STATE(428)] = 31573, + [SMALL_STATE(429)] = 31641, + [SMALL_STATE(430)] = 31709, + [SMALL_STATE(431)] = 31777, + [SMALL_STATE(432)] = 31847, + [SMALL_STATE(433)] = 31917, + [SMALL_STATE(434)] = 32028, + [SMALL_STATE(435)] = 32139, + [SMALL_STATE(436)] = 32206, + [SMALL_STATE(437)] = 32317, + [SMALL_STATE(438)] = 32428, + [SMALL_STATE(439)] = 32495, + [SMALL_STATE(440)] = 32562, + [SMALL_STATE(441)] = 32629, + [SMALL_STATE(442)] = 32740, + [SMALL_STATE(443)] = 32851, + [SMALL_STATE(444)] = 32918, + [SMALL_STATE(445)] = 33029, + [SMALL_STATE(446)] = 33096, + [SMALL_STATE(447)] = 33207, + [SMALL_STATE(448)] = 33318, + [SMALL_STATE(449)] = 33429, + [SMALL_STATE(450)] = 33540, + [SMALL_STATE(451)] = 33651, + [SMALL_STATE(452)] = 33762, + [SMALL_STATE(453)] = 33873, + [SMALL_STATE(454)] = 33984, + [SMALL_STATE(455)] = 34095, + [SMALL_STATE(456)] = 34206, + [SMALL_STATE(457)] = 34317, + [SMALL_STATE(458)] = 34428, + [SMALL_STATE(459)] = 34539, + [SMALL_STATE(460)] = 34650, + [SMALL_STATE(461)] = 34761, + [SMALL_STATE(462)] = 34872, + [SMALL_STATE(463)] = 34983, + [SMALL_STATE(464)] = 35094, + [SMALL_STATE(465)] = 35205, + [SMALL_STATE(466)] = 35316, + [SMALL_STATE(467)] = 35427, + [SMALL_STATE(468)] = 35538, + [SMALL_STATE(469)] = 35649, + [SMALL_STATE(470)] = 35760, + [SMALL_STATE(471)] = 35871, + [SMALL_STATE(472)] = 35982, + [SMALL_STATE(473)] = 36093, + [SMALL_STATE(474)] = 36204, + [SMALL_STATE(475)] = 36315, + [SMALL_STATE(476)] = 36426, + [SMALL_STATE(477)] = 36537, + [SMALL_STATE(478)] = 36648, + [SMALL_STATE(479)] = 36759, + [SMALL_STATE(480)] = 36870, + [SMALL_STATE(481)] = 36981, + [SMALL_STATE(482)] = 37092, + [SMALL_STATE(483)] = 37203, + [SMALL_STATE(484)] = 37314, + [SMALL_STATE(485)] = 37425, + [SMALL_STATE(486)] = 37536, + [SMALL_STATE(487)] = 37647, + [SMALL_STATE(488)] = 37714, + [SMALL_STATE(489)] = 37825, + [SMALL_STATE(490)] = 37936, + [SMALL_STATE(491)] = 38047, + [SMALL_STATE(492)] = 38158, + [SMALL_STATE(493)] = 38269, + [SMALL_STATE(494)] = 38380, + [SMALL_STATE(495)] = 38491, + [SMALL_STATE(496)] = 38602, + [SMALL_STATE(497)] = 38713, + [SMALL_STATE(498)] = 38824, + [SMALL_STATE(499)] = 38935, + [SMALL_STATE(500)] = 39046, + [SMALL_STATE(501)] = 39157, + [SMALL_STATE(502)] = 39268, + [SMALL_STATE(503)] = 39335, + [SMALL_STATE(504)] = 39446, + [SMALL_STATE(505)] = 39557, + [SMALL_STATE(506)] = 39668, + [SMALL_STATE(507)] = 39779, + [SMALL_STATE(508)] = 39846, + [SMALL_STATE(509)] = 39957, + [SMALL_STATE(510)] = 40068, + [SMALL_STATE(511)] = 40179, + [SMALL_STATE(512)] = 40290, + [SMALL_STATE(513)] = 40401, + [SMALL_STATE(514)] = 40512, + [SMALL_STATE(515)] = 40579, + [SMALL_STATE(516)] = 40690, + [SMALL_STATE(517)] = 40761, + [SMALL_STATE(518)] = 40828, + [SMALL_STATE(519)] = 40895, + [SMALL_STATE(520)] = 41006, + [SMALL_STATE(521)] = 41073, + [SMALL_STATE(522)] = 41140, + [SMALL_STATE(523)] = 41251, + [SMALL_STATE(524)] = 41362, + [SMALL_STATE(525)] = 41473, + [SMALL_STATE(526)] = 41584, + [SMALL_STATE(527)] = 41695, + [SMALL_STATE(528)] = 41806, + [SMALL_STATE(529)] = 41873, + [SMALL_STATE(530)] = 41940, + [SMALL_STATE(531)] = 42051, + [SMALL_STATE(532)] = 42162, + [SMALL_STATE(533)] = 42273, + [SMALL_STATE(534)] = 42384, + [SMALL_STATE(535)] = 42495, + [SMALL_STATE(536)] = 42606, + [SMALL_STATE(537)] = 42717, + [SMALL_STATE(538)] = 42828, + [SMALL_STATE(539)] = 42939, + [SMALL_STATE(540)] = 43050, + [SMALL_STATE(541)] = 43161, + [SMALL_STATE(542)] = 43272, + [SMALL_STATE(543)] = 43383, + [SMALL_STATE(544)] = 43494, + [SMALL_STATE(545)] = 43605, + [SMALL_STATE(546)] = 43716, + [SMALL_STATE(547)] = 43827, + [SMALL_STATE(548)] = 43938, + [SMALL_STATE(549)] = 44049, + [SMALL_STATE(550)] = 44160, + [SMALL_STATE(551)] = 44271, + [SMALL_STATE(552)] = 44382, + [SMALL_STATE(553)] = 44493, + [SMALL_STATE(554)] = 44604, + [SMALL_STATE(555)] = 44715, + [SMALL_STATE(556)] = 44826, + [SMALL_STATE(557)] = 44937, + [SMALL_STATE(558)] = 45048, + [SMALL_STATE(559)] = 45159, + [SMALL_STATE(560)] = 45270, + [SMALL_STATE(561)] = 45381, + [SMALL_STATE(562)] = 45492, + [SMALL_STATE(563)] = 45603, + [SMALL_STATE(564)] = 45714, + [SMALL_STATE(565)] = 45825, + [SMALL_STATE(566)] = 45936, + [SMALL_STATE(567)] = 46047, + [SMALL_STATE(568)] = 46158, + [SMALL_STATE(569)] = 46269, + [SMALL_STATE(570)] = 46380, + [SMALL_STATE(571)] = 46491, + [SMALL_STATE(572)] = 46602, + [SMALL_STATE(573)] = 46713, + [SMALL_STATE(574)] = 46824, + [SMALL_STATE(575)] = 46935, + [SMALL_STATE(576)] = 47046, + [SMALL_STATE(577)] = 47157, + [SMALL_STATE(578)] = 47268, + [SMALL_STATE(579)] = 47379, + [SMALL_STATE(580)] = 47490, + [SMALL_STATE(581)] = 47601, + [SMALL_STATE(582)] = 47712, + [SMALL_STATE(583)] = 47823, + [SMALL_STATE(584)] = 47934, + [SMALL_STATE(585)] = 48045, + [SMALL_STATE(586)] = 48156, + [SMALL_STATE(587)] = 48223, + [SMALL_STATE(588)] = 48290, + [SMALL_STATE(589)] = 48357, + [SMALL_STATE(590)] = 48468, + [SMALL_STATE(591)] = 48535, + [SMALL_STATE(592)] = 48646, + [SMALL_STATE(593)] = 48757, + [SMALL_STATE(594)] = 48824, + [SMALL_STATE(595)] = 48891, + [SMALL_STATE(596)] = 48958, + [SMALL_STATE(597)] = 49025, + [SMALL_STATE(598)] = 49092, + [SMALL_STATE(599)] = 49203, + [SMALL_STATE(600)] = 49270, + [SMALL_STATE(601)] = 49337, + [SMALL_STATE(602)] = 49404, + [SMALL_STATE(603)] = 49471, + [SMALL_STATE(604)] = 49582, + [SMALL_STATE(605)] = 49693, + [SMALL_STATE(606)] = 49804, + [SMALL_STATE(607)] = 49915, + [SMALL_STATE(608)] = 49982, + [SMALL_STATE(609)] = 50093, + [SMALL_STATE(610)] = 50160, + [SMALL_STATE(611)] = 50227, + [SMALL_STATE(612)] = 50294, + [SMALL_STATE(613)] = 50361, + [SMALL_STATE(614)] = 50472, + [SMALL_STATE(615)] = 50539, + [SMALL_STATE(616)] = 50650, + [SMALL_STATE(617)] = 50761, + [SMALL_STATE(618)] = 50872, + [SMALL_STATE(619)] = 50983, + [SMALL_STATE(620)] = 51094, + [SMALL_STATE(621)] = 51205, + [SMALL_STATE(622)] = 51316, + [SMALL_STATE(623)] = 51427, + [SMALL_STATE(624)] = 51538, + [SMALL_STATE(625)] = 51649, + [SMALL_STATE(626)] = 51760, + [SMALL_STATE(627)] = 51871, + [SMALL_STATE(628)] = 51982, + [SMALL_STATE(629)] = 52049, + [SMALL_STATE(630)] = 52160, + [SMALL_STATE(631)] = 52271, + [SMALL_STATE(632)] = 52382, + [SMALL_STATE(633)] = 52493, + [SMALL_STATE(634)] = 52604, + [SMALL_STATE(635)] = 52715, + [SMALL_STATE(636)] = 52782, + [SMALL_STATE(637)] = 52849, + [SMALL_STATE(638)] = 52916, + [SMALL_STATE(639)] = 52983, + [SMALL_STATE(640)] = 53094, + [SMALL_STATE(641)] = 53161, + [SMALL_STATE(642)] = 53272, + [SMALL_STATE(643)] = 53339, + [SMALL_STATE(644)] = 53450, + [SMALL_STATE(645)] = 53561, + [SMALL_STATE(646)] = 53672, + [SMALL_STATE(647)] = 53783, + [SMALL_STATE(648)] = 53894, + [SMALL_STATE(649)] = 54005, + [SMALL_STATE(650)] = 54116, + [SMALL_STATE(651)] = 54227, + [SMALL_STATE(652)] = 54338, + [SMALL_STATE(653)] = 54449, + [SMALL_STATE(654)] = 54560, + [SMALL_STATE(655)] = 54671, + [SMALL_STATE(656)] = 54782, + [SMALL_STATE(657)] = 54893, + [SMALL_STATE(658)] = 55004, + [SMALL_STATE(659)] = 55115, + [SMALL_STATE(660)] = 55182, + [SMALL_STATE(661)] = 55249, + [SMALL_STATE(662)] = 55360, + [SMALL_STATE(663)] = 55471, + [SMALL_STATE(664)] = 55582, + [SMALL_STATE(665)] = 55693, + [SMALL_STATE(666)] = 55760, + [SMALL_STATE(667)] = 55827, + [SMALL_STATE(668)] = 55894, + [SMALL_STATE(669)] = 55961, + [SMALL_STATE(670)] = 56028, + [SMALL_STATE(671)] = 56139, + [SMALL_STATE(672)] = 56250, + [SMALL_STATE(673)] = 56361, + [SMALL_STATE(674)] = 56472, + [SMALL_STATE(675)] = 56539, + [SMALL_STATE(676)] = 56650, + [SMALL_STATE(677)] = 56761, + [SMALL_STATE(678)] = 56872, + [SMALL_STATE(679)] = 56983, + [SMALL_STATE(680)] = 57094, + [SMALL_STATE(681)] = 57161, + [SMALL_STATE(682)] = 57272, + [SMALL_STATE(683)] = 57383, + [SMALL_STATE(684)] = 57450, + [SMALL_STATE(685)] = 57561, + [SMALL_STATE(686)] = 57672, + [SMALL_STATE(687)] = 57783, + [SMALL_STATE(688)] = 57894, + [SMALL_STATE(689)] = 58005, + [SMALL_STATE(690)] = 58116, + [SMALL_STATE(691)] = 58227, + [SMALL_STATE(692)] = 58338, + [SMALL_STATE(693)] = 58449, + [SMALL_STATE(694)] = 58560, + [SMALL_STATE(695)] = 58671, + [SMALL_STATE(696)] = 58782, + [SMALL_STATE(697)] = 58849, + [SMALL_STATE(698)] = 58960, + [SMALL_STATE(699)] = 59071, + [SMALL_STATE(700)] = 59138, + [SMALL_STATE(701)] = 59249, + [SMALL_STATE(702)] = 59360, + [SMALL_STATE(703)] = 59427, + [SMALL_STATE(704)] = 59494, + [SMALL_STATE(705)] = 59561, + [SMALL_STATE(706)] = 59628, + [SMALL_STATE(707)] = 59695, + [SMALL_STATE(708)] = 59806, + [SMALL_STATE(709)] = 59917, + [SMALL_STATE(710)] = 59984, + [SMALL_STATE(711)] = 60095, + [SMALL_STATE(712)] = 60206, + [SMALL_STATE(713)] = 60317, + [SMALL_STATE(714)] = 60428, + [SMALL_STATE(715)] = 60539, + [SMALL_STATE(716)] = 60650, + [SMALL_STATE(717)] = 60761, + [SMALL_STATE(718)] = 60872, + [SMALL_STATE(719)] = 60983, + [SMALL_STATE(720)] = 61094, + [SMALL_STATE(721)] = 61205, + [SMALL_STATE(722)] = 61316, + [SMALL_STATE(723)] = 61427, + [SMALL_STATE(724)] = 61538, + [SMALL_STATE(725)] = 61649, + [SMALL_STATE(726)] = 61760, + [SMALL_STATE(727)] = 61827, + [SMALL_STATE(728)] = 61938, + [SMALL_STATE(729)] = 62049, + [SMALL_STATE(730)] = 62160, + [SMALL_STATE(731)] = 62271, + [SMALL_STATE(732)] = 62338, + [SMALL_STATE(733)] = 62449, + [SMALL_STATE(734)] = 62560, + [SMALL_STATE(735)] = 62631, + [SMALL_STATE(736)] = 62742, + [SMALL_STATE(737)] = 62853, + [SMALL_STATE(738)] = 62964, + [SMALL_STATE(739)] = 63075, + [SMALL_STATE(740)] = 63142, + [SMALL_STATE(741)] = 63253, + [SMALL_STATE(742)] = 63364, + [SMALL_STATE(743)] = 63475, + [SMALL_STATE(744)] = 63542, + [SMALL_STATE(745)] = 63653, + [SMALL_STATE(746)] = 63764, + [SMALL_STATE(747)] = 63875, + [SMALL_STATE(748)] = 63986, + [SMALL_STATE(749)] = 64097, + [SMALL_STATE(750)] = 64208, + [SMALL_STATE(751)] = 64319, + [SMALL_STATE(752)] = 64430, + [SMALL_STATE(753)] = 64541, + [SMALL_STATE(754)] = 64652, + [SMALL_STATE(755)] = 64763, + [SMALL_STATE(756)] = 64834, + [SMALL_STATE(757)] = 64901, + [SMALL_STATE(758)] = 64968, + [SMALL_STATE(759)] = 65079, + [SMALL_STATE(760)] = 65190, + [SMALL_STATE(761)] = 65257, + [SMALL_STATE(762)] = 65328, + [SMALL_STATE(763)] = 65439, + [SMALL_STATE(764)] = 65550, + [SMALL_STATE(765)] = 65661, + [SMALL_STATE(766)] = 65772, + [SMALL_STATE(767)] = 65883, + [SMALL_STATE(768)] = 65950, + [SMALL_STATE(769)] = 66061, + [SMALL_STATE(770)] = 66172, + [SMALL_STATE(771)] = 66283, + [SMALL_STATE(772)] = 66394, + [SMALL_STATE(773)] = 66505, + [SMALL_STATE(774)] = 66572, + [SMALL_STATE(775)] = 66683, + [SMALL_STATE(776)] = 66750, + [SMALL_STATE(777)] = 66817, + [SMALL_STATE(778)] = 66884, + [SMALL_STATE(779)] = 66995, + [SMALL_STATE(780)] = 67062, + [SMALL_STATE(781)] = 67173, + [SMALL_STATE(782)] = 67284, + [SMALL_STATE(783)] = 67395, + [SMALL_STATE(784)] = 67506, + [SMALL_STATE(785)] = 67617, + [SMALL_STATE(786)] = 67728, + [SMALL_STATE(787)] = 67839, + [SMALL_STATE(788)] = 67950, + [SMALL_STATE(789)] = 68061, + [SMALL_STATE(790)] = 68172, + [SMALL_STATE(791)] = 68239, + [SMALL_STATE(792)] = 68306, + [SMALL_STATE(793)] = 68417, + [SMALL_STATE(794)] = 68528, + [SMALL_STATE(795)] = 68639, + [SMALL_STATE(796)] = 68750, + [SMALL_STATE(797)] = 68861, + [SMALL_STATE(798)] = 68972, + [SMALL_STATE(799)] = 69083, + [SMALL_STATE(800)] = 69194, + [SMALL_STATE(801)] = 69305, + [SMALL_STATE(802)] = 69416, + [SMALL_STATE(803)] = 69483, + [SMALL_STATE(804)] = 69550, + [SMALL_STATE(805)] = 69661, + [SMALL_STATE(806)] = 69772, + [SMALL_STATE(807)] = 69883, + [SMALL_STATE(808)] = 69950, + [SMALL_STATE(809)] = 70061, + [SMALL_STATE(810)] = 70172, + [SMALL_STATE(811)] = 70283, + [SMALL_STATE(812)] = 70350, + [SMALL_STATE(813)] = 70417, + [SMALL_STATE(814)] = 70484, + [SMALL_STATE(815)] = 70595, + [SMALL_STATE(816)] = 70706, + [SMALL_STATE(817)] = 70817, + [SMALL_STATE(818)] = 70928, + [SMALL_STATE(819)] = 71039, + [SMALL_STATE(820)] = 71106, + [SMALL_STATE(821)] = 71217, + [SMALL_STATE(822)] = 71328, + [SMALL_STATE(823)] = 71439, + [SMALL_STATE(824)] = 71550, + [SMALL_STATE(825)] = 71661, + [SMALL_STATE(826)] = 71728, + [SMALL_STATE(827)] = 71795, + [SMALL_STATE(828)] = 71906, + [SMALL_STATE(829)] = 72017, + [SMALL_STATE(830)] = 72128, + [SMALL_STATE(831)] = 72239, + [SMALL_STATE(832)] = 72350, + [SMALL_STATE(833)] = 72461, + [SMALL_STATE(834)] = 72572, + [SMALL_STATE(835)] = 72683, + [SMALL_STATE(836)] = 72794, + [SMALL_STATE(837)] = 72861, + [SMALL_STATE(838)] = 72972, + [SMALL_STATE(839)] = 73083, + [SMALL_STATE(840)] = 73150, + [SMALL_STATE(841)] = 73261, + [SMALL_STATE(842)] = 73372, + [SMALL_STATE(843)] = 73439, + [SMALL_STATE(844)] = 73550, + [SMALL_STATE(845)] = 73661, + [SMALL_STATE(846)] = 73772, + [SMALL_STATE(847)] = 73883, + [SMALL_STATE(848)] = 73994, + [SMALL_STATE(849)] = 74105, + [SMALL_STATE(850)] = 74216, + [SMALL_STATE(851)] = 74327, + [SMALL_STATE(852)] = 74438, + [SMALL_STATE(853)] = 74549, + [SMALL_STATE(854)] = 74660, + [SMALL_STATE(855)] = 74771, + [SMALL_STATE(856)] = 74882, + [SMALL_STATE(857)] = 74993, + [SMALL_STATE(858)] = 75104, + [SMALL_STATE(859)] = 75215, + [SMALL_STATE(860)] = 75282, + [SMALL_STATE(861)] = 75393, + [SMALL_STATE(862)] = 75504, + [SMALL_STATE(863)] = 75571, + [SMALL_STATE(864)] = 75682, + [SMALL_STATE(865)] = 75793, + [SMALL_STATE(866)] = 75904, + [SMALL_STATE(867)] = 76015, + [SMALL_STATE(868)] = 76126, + [SMALL_STATE(869)] = 76237, + [SMALL_STATE(870)] = 76348, + [SMALL_STATE(871)] = 76459, + [SMALL_STATE(872)] = 76570, + [SMALL_STATE(873)] = 76637, + [SMALL_STATE(874)] = 76704, + [SMALL_STATE(875)] = 76815, + [SMALL_STATE(876)] = 76926, + [SMALL_STATE(877)] = 77037, + [SMALL_STATE(878)] = 77148, + [SMALL_STATE(879)] = 77259, + [SMALL_STATE(880)] = 77370, + [SMALL_STATE(881)] = 77437, + [SMALL_STATE(882)] = 77508, + [SMALL_STATE(883)] = 77619, + [SMALL_STATE(884)] = 77730, + [SMALL_STATE(885)] = 77841, + [SMALL_STATE(886)] = 77952, + [SMALL_STATE(887)] = 78019, + [SMALL_STATE(888)] = 78086, + [SMALL_STATE(889)] = 78197, + [SMALL_STATE(890)] = 78308, + [SMALL_STATE(891)] = 78419, + [SMALL_STATE(892)] = 78530, + [SMALL_STATE(893)] = 78641, + [SMALL_STATE(894)] = 78752, + [SMALL_STATE(895)] = 78863, + [SMALL_STATE(896)] = 78930, + [SMALL_STATE(897)] = 78997, + [SMALL_STATE(898)] = 79064, + [SMALL_STATE(899)] = 79135, + [SMALL_STATE(900)] = 79202, + [SMALL_STATE(901)] = 79269, + [SMALL_STATE(902)] = 79336, + [SMALL_STATE(903)] = 79447, + [SMALL_STATE(904)] = 79558, + [SMALL_STATE(905)] = 79669, + [SMALL_STATE(906)] = 79780, + [SMALL_STATE(907)] = 79891, + [SMALL_STATE(908)] = 80002, + [SMALL_STATE(909)] = 80113, + [SMALL_STATE(910)] = 80224, + [SMALL_STATE(911)] = 80335, + [SMALL_STATE(912)] = 80446, + [SMALL_STATE(913)] = 80557, + [SMALL_STATE(914)] = 80668, + [SMALL_STATE(915)] = 80779, + [SMALL_STATE(916)] = 80890, + [SMALL_STATE(917)] = 81001, + [SMALL_STATE(918)] = 81112, + [SMALL_STATE(919)] = 81223, + [SMALL_STATE(920)] = 81334, + [SMALL_STATE(921)] = 81445, + [SMALL_STATE(922)] = 81556, + [SMALL_STATE(923)] = 81667, + [SMALL_STATE(924)] = 81778, + [SMALL_STATE(925)] = 81889, + [SMALL_STATE(926)] = 82000, + [SMALL_STATE(927)] = 82111, + [SMALL_STATE(928)] = 82222, + [SMALL_STATE(929)] = 82333, + [SMALL_STATE(930)] = 82444, + [SMALL_STATE(931)] = 82555, + [SMALL_STATE(932)] = 82666, + [SMALL_STATE(933)] = 82777, + [SMALL_STATE(934)] = 82888, + [SMALL_STATE(935)] = 82999, + [SMALL_STATE(936)] = 83110, + [SMALL_STATE(937)] = 83221, + [SMALL_STATE(938)] = 83332, + [SMALL_STATE(939)] = 83443, + [SMALL_STATE(940)] = 83554, + [SMALL_STATE(941)] = 83665, + [SMALL_STATE(942)] = 83776, + [SMALL_STATE(943)] = 83887, + [SMALL_STATE(944)] = 83998, + [SMALL_STATE(945)] = 84109, + [SMALL_STATE(946)] = 84220, + [SMALL_STATE(947)] = 84331, + [SMALL_STATE(948)] = 84442, + [SMALL_STATE(949)] = 84553, + [SMALL_STATE(950)] = 84664, + [SMALL_STATE(951)] = 84775, + [SMALL_STATE(952)] = 84886, + [SMALL_STATE(953)] = 84997, + [SMALL_STATE(954)] = 85108, + [SMALL_STATE(955)] = 85219, + [SMALL_STATE(956)] = 85330, + [SMALL_STATE(957)] = 85441, + [SMALL_STATE(958)] = 85552, + [SMALL_STATE(959)] = 85663, + [SMALL_STATE(960)] = 85774, + [SMALL_STATE(961)] = 85885, + [SMALL_STATE(962)] = 85996, + [SMALL_STATE(963)] = 86107, + [SMALL_STATE(964)] = 86218, + [SMALL_STATE(965)] = 86329, + [SMALL_STATE(966)] = 86440, + [SMALL_STATE(967)] = 86551, + [SMALL_STATE(968)] = 86662, + [SMALL_STATE(969)] = 86773, + [SMALL_STATE(970)] = 86884, + [SMALL_STATE(971)] = 86995, + [SMALL_STATE(972)] = 87106, + [SMALL_STATE(973)] = 87217, + [SMALL_STATE(974)] = 87328, + [SMALL_STATE(975)] = 87439, + [SMALL_STATE(976)] = 87550, + [SMALL_STATE(977)] = 87661, + [SMALL_STATE(978)] = 87772, + [SMALL_STATE(979)] = 87883, + [SMALL_STATE(980)] = 87994, + [SMALL_STATE(981)] = 88105, + [SMALL_STATE(982)] = 88216, + [SMALL_STATE(983)] = 88327, + [SMALL_STATE(984)] = 88438, + [SMALL_STATE(985)] = 88549, + [SMALL_STATE(986)] = 88660, + [SMALL_STATE(987)] = 88771, + [SMALL_STATE(988)] = 88882, + [SMALL_STATE(989)] = 88993, + [SMALL_STATE(990)] = 89104, + [SMALL_STATE(991)] = 89215, + [SMALL_STATE(992)] = 89326, + [SMALL_STATE(993)] = 89437, + [SMALL_STATE(994)] = 89548, + [SMALL_STATE(995)] = 89617, + [SMALL_STATE(996)] = 89686, + [SMALL_STATE(997)] = 89761, + [SMALL_STATE(998)] = 89830, + [SMALL_STATE(999)] = 89891, + [SMALL_STATE(1000)] = 89986, + [SMALL_STATE(1001)] = 90047, + [SMALL_STATE(1002)] = 90112, + [SMALL_STATE(1003)] = 90173, + [SMALL_STATE(1004)] = 90236, + [SMALL_STATE(1005)] = 90299, + [SMALL_STATE(1006)] = 90364, + [SMALL_STATE(1007)] = 90427, + [SMALL_STATE(1008)] = 90488, + [SMALL_STATE(1009)] = 90567, + [SMALL_STATE(1010)] = 90648, + [SMALL_STATE(1011)] = 90713, + [SMALL_STATE(1012)] = 90782, + [SMALL_STATE(1013)] = 90865, + [SMALL_STATE(1014)] = 90934, + [SMALL_STATE(1015)] = 91019, + [SMALL_STATE(1016)] = 91096, + [SMALL_STATE(1017)] = 91157, + [SMALL_STATE(1018)] = 91220, + [SMALL_STATE(1019)] = 91285, + [SMALL_STATE(1020)] = 91380, + [SMALL_STATE(1021)] = 91443, + [SMALL_STATE(1022)] = 91516, + [SMALL_STATE(1023)] = 91577, + [SMALL_STATE(1024)] = 91652, + [SMALL_STATE(1025)] = 91713, + [SMALL_STATE(1026)] = 91774, + [SMALL_STATE(1027)] = 91871, + [SMALL_STATE(1028)] = 91932, + [SMALL_STATE(1029)] = 91995, + [SMALL_STATE(1030)] = 92068, + [SMALL_STATE(1031)] = 92165, + [SMALL_STATE(1032)] = 92226, + [SMALL_STATE(1033)] = 92287, + [SMALL_STATE(1034)] = 92348, + [SMALL_STATE(1035)] = 92419, + [SMALL_STATE(1036)] = 92480, + [SMALL_STATE(1037)] = 92541, + [SMALL_STATE(1038)] = 92614, + [SMALL_STATE(1039)] = 92675, + [SMALL_STATE(1040)] = 92772, + [SMALL_STATE(1041)] = 92830, + [SMALL_STATE(1042)] = 92888, + [SMALL_STATE(1043)] = 92948, + [SMALL_STATE(1044)] = 93006, + [SMALL_STATE(1045)] = 93064, + [SMALL_STATE(1046)] = 93122, + [SMALL_STATE(1047)] = 93180, + [SMALL_STATE(1048)] = 93240, + [SMALL_STATE(1049)] = 93300, + [SMALL_STATE(1050)] = 93358, + [SMALL_STATE(1051)] = 93416, + [SMALL_STATE(1052)] = 93474, + [SMALL_STATE(1053)] = 93534, + [SMALL_STATE(1054)] = 93592, + [SMALL_STATE(1055)] = 93660, + [SMALL_STATE(1056)] = 93718, + [SMALL_STATE(1057)] = 93786, + [SMALL_STATE(1058)] = 93844, + [SMALL_STATE(1059)] = 93902, + [SMALL_STATE(1060)] = 93962, + [SMALL_STATE(1061)] = 94027, + [SMALL_STATE(1062)] = 94092, + [SMALL_STATE(1063)] = 94149, + [SMALL_STATE(1064)] = 94216, + [SMALL_STATE(1065)] = 94273, + [SMALL_STATE(1066)] = 94330, + [SMALL_STATE(1067)] = 94387, + [SMALL_STATE(1068)] = 94444, + [SMALL_STATE(1069)] = 94501, + [SMALL_STATE(1070)] = 94562, + [SMALL_STATE(1071)] = 94619, + [SMALL_STATE(1072)] = 94676, + [SMALL_STATE(1073)] = 94737, + [SMALL_STATE(1074)] = 94794, + [SMALL_STATE(1075)] = 94861, + [SMALL_STATE(1076)] = 94918, + [SMALL_STATE(1077)] = 94975, + [SMALL_STATE(1078)] = 95032, + [SMALL_STATE(1079)] = 95089, + [SMALL_STATE(1080)] = 95146, + [SMALL_STATE(1081)] = 95203, + [SMALL_STATE(1082)] = 95260, + [SMALL_STATE(1083)] = 95325, + [SMALL_STATE(1084)] = 95390, + [SMALL_STATE(1085)] = 95447, + [SMALL_STATE(1086)] = 95504, + [SMALL_STATE(1087)] = 95569, + [SMALL_STATE(1088)] = 95626, + [SMALL_STATE(1089)] = 95691, + [SMALL_STATE(1090)] = 95748, + [SMALL_STATE(1091)] = 95805, + [SMALL_STATE(1092)] = 95862, + [SMALL_STATE(1093)] = 95919, + [SMALL_STATE(1094)] = 95976, + [SMALL_STATE(1095)] = 96033, + [SMALL_STATE(1096)] = 96090, + [SMALL_STATE(1097)] = 96147, + [SMALL_STATE(1098)] = 96212, + [SMALL_STATE(1099)] = 96277, + [SMALL_STATE(1100)] = 96334, + [SMALL_STATE(1101)] = 96391, + [SMALL_STATE(1102)] = 96448, + [SMALL_STATE(1103)] = 96505, + [SMALL_STATE(1104)] = 96562, + [SMALL_STATE(1105)] = 96619, + [SMALL_STATE(1106)] = 96676, + [SMALL_STATE(1107)] = 96733, + [SMALL_STATE(1108)] = 96790, + [SMALL_STATE(1109)] = 96847, + [SMALL_STATE(1110)] = 96904, + [SMALL_STATE(1111)] = 96961, + [SMALL_STATE(1112)] = 97018, + [SMALL_STATE(1113)] = 97075, + [SMALL_STATE(1114)] = 97132, + [SMALL_STATE(1115)] = 97193, + [SMALL_STATE(1116)] = 97250, + [SMALL_STATE(1117)] = 97307, + [SMALL_STATE(1118)] = 97364, + [SMALL_STATE(1119)] = 97421, + [SMALL_STATE(1120)] = 97478, + [SMALL_STATE(1121)] = 97535, + [SMALL_STATE(1122)] = 97592, + [SMALL_STATE(1123)] = 97649, + [SMALL_STATE(1124)] = 97710, + [SMALL_STATE(1125)] = 97771, + [SMALL_STATE(1126)] = 97832, + [SMALL_STATE(1127)] = 97886, + [SMALL_STATE(1128)] = 97940, + [SMALL_STATE(1129)] = 98006, + [SMALL_STATE(1130)] = 98068, + [SMALL_STATE(1131)] = 98122, + [SMALL_STATE(1132)] = 98176, + [SMALL_STATE(1133)] = 98238, + [SMALL_STATE(1134)] = 98304, + [SMALL_STATE(1135)] = 98358, + [SMALL_STATE(1136)] = 98412, + [SMALL_STATE(1137)] = 98477, + [SMALL_STATE(1138)] = 98542, + [SMALL_STATE(1139)] = 98607, + [SMALL_STATE(1140)] = 98658, + [SMALL_STATE(1141)] = 98709, + [SMALL_STATE(1142)] = 98774, + [SMALL_STATE(1143)] = 98825, + [SMALL_STATE(1144)] = 98884, + [SMALL_STATE(1145)] = 98935, + [SMALL_STATE(1146)] = 98986, + [SMALL_STATE(1147)] = 99045, + [SMALL_STATE(1148)] = 99098, + [SMALL_STATE(1149)] = 99157, + [SMALL_STATE(1150)] = 99209, + [SMALL_STATE(1151)] = 99295, + [SMALL_STATE(1152)] = 99351, + [SMALL_STATE(1153)] = 99401, + [SMALL_STATE(1154)] = 99459, + [SMALL_STATE(1155)] = 99519, + [SMALL_STATE(1156)] = 99569, + [SMALL_STATE(1157)] = 99627, + [SMALL_STATE(1158)] = 99715, + [SMALL_STATE(1159)] = 99803, + [SMALL_STATE(1160)] = 99863, + [SMALL_STATE(1161)] = 99921, + [SMALL_STATE(1162)] = 99973, + [SMALL_STATE(1163)] = 100029, + [SMALL_STATE(1164)] = 100117, + [SMALL_STATE(1165)] = 100167, + [SMALL_STATE(1166)] = 100219, + [SMALL_STATE(1167)] = 100277, + [SMALL_STATE(1168)] = 100331, + [SMALL_STATE(1169)] = 100393, + [SMALL_STATE(1170)] = 100449, + [SMALL_STATE(1171)] = 100507, + [SMALL_STATE(1172)] = 100565, + [SMALL_STATE(1173)] = 100627, + [SMALL_STATE(1174)] = 100697, + [SMALL_STATE(1175)] = 100755, + [SMALL_STATE(1176)] = 100827, + [SMALL_STATE(1177)] = 100901, + [SMALL_STATE(1178)] = 100977, + [SMALL_STATE(1179)] = 101043, + [SMALL_STATE(1180)] = 101105, + [SMALL_STATE(1181)] = 101163, + [SMALL_STATE(1182)] = 101225, + [SMALL_STATE(1183)] = 101277, + [SMALL_STATE(1184)] = 101335, + [SMALL_STATE(1185)] = 101393, + [SMALL_STATE(1186)] = 101443, + [SMALL_STATE(1187)] = 101499, + [SMALL_STATE(1188)] = 101555, + [SMALL_STATE(1189)] = 101609, + [SMALL_STATE(1190)] = 101659, + [SMALL_STATE(1191)] = 101717, + [SMALL_STATE(1192)] = 101767, + [SMALL_STATE(1193)] = 101825, + [SMALL_STATE(1194)] = 101875, + [SMALL_STATE(1195)] = 101933, + [SMALL_STATE(1196)] = 102019, + [SMALL_STATE(1197)] = 102077, + [SMALL_STATE(1198)] = 102135, + [SMALL_STATE(1199)] = 102182, + [SMALL_STATE(1200)] = 102229, + [SMALL_STATE(1201)] = 102276, + [SMALL_STATE(1202)] = 102323, + [SMALL_STATE(1203)] = 102380, + [SMALL_STATE(1204)] = 102427, + [SMALL_STATE(1205)] = 102474, + [SMALL_STATE(1206)] = 102527, + [SMALL_STATE(1207)] = 102574, + [SMALL_STATE(1208)] = 102623, + [SMALL_STATE(1209)] = 102670, + [SMALL_STATE(1210)] = 102717, + [SMALL_STATE(1211)] = 102764, + [SMALL_STATE(1212)] = 102811, + [SMALL_STATE(1213)] = 102858, + [SMALL_STATE(1214)] = 102905, + [SMALL_STATE(1215)] = 102962, + [SMALL_STATE(1216)] = 103009, + [SMALL_STATE(1217)] = 103056, + [SMALL_STATE(1218)] = 103105, + [SMALL_STATE(1219)] = 103154, + [SMALL_STATE(1220)] = 103203, + [SMALL_STATE(1221)] = 103252, + [SMALL_STATE(1222)] = 103299, + [SMALL_STATE(1223)] = 103348, + [SMALL_STATE(1224)] = 103395, + [SMALL_STATE(1225)] = 103442, + [SMALL_STATE(1226)] = 103489, + [SMALL_STATE(1227)] = 103540, + [SMALL_STATE(1228)] = 103587, + [SMALL_STATE(1229)] = 103644, + [SMALL_STATE(1230)] = 103695, + [SMALL_STATE(1231)] = 103742, + [SMALL_STATE(1232)] = 103801, + [SMALL_STATE(1233)] = 103848, + [SMALL_STATE(1234)] = 103897, + [SMALL_STATE(1235)] = 103944, + [SMALL_STATE(1236)] = 103991, + [SMALL_STATE(1237)] = 104038, + [SMALL_STATE(1238)] = 104085, + [SMALL_STATE(1239)] = 104132, + [SMALL_STATE(1240)] = 104179, + [SMALL_STATE(1241)] = 104228, + [SMALL_STATE(1242)] = 104275, + [SMALL_STATE(1243)] = 104322, + [SMALL_STATE(1244)] = 104369, + [SMALL_STATE(1245)] = 104416, + [SMALL_STATE(1246)] = 104463, + [SMALL_STATE(1247)] = 104510, + [SMALL_STATE(1248)] = 104557, + [SMALL_STATE(1249)] = 104604, + [SMALL_STATE(1250)] = 104651, + [SMALL_STATE(1251)] = 104698, + [SMALL_STATE(1252)] = 104751, + [SMALL_STATE(1253)] = 104798, + [SMALL_STATE(1254)] = 104845, + [SMALL_STATE(1255)] = 104902, + [SMALL_STATE(1256)] = 104949, + [SMALL_STATE(1257)] = 104996, + [SMALL_STATE(1258)] = 105043, + [SMALL_STATE(1259)] = 105090, + [SMALL_STATE(1260)] = 105139, + [SMALL_STATE(1261)] = 105188, + [SMALL_STATE(1262)] = 105237, + [SMALL_STATE(1263)] = 105288, + [SMALL_STATE(1264)] = 105345, + [SMALL_STATE(1265)] = 105392, + [SMALL_STATE(1266)] = 105439, + [SMALL_STATE(1267)] = 105486, + [SMALL_STATE(1268)] = 105535, + [SMALL_STATE(1269)] = 105582, + [SMALL_STATE(1270)] = 105629, + [SMALL_STATE(1271)] = 105676, + [SMALL_STATE(1272)] = 105733, + [SMALL_STATE(1273)] = 105782, + [SMALL_STATE(1274)] = 105831, + [SMALL_STATE(1275)] = 105878, + [SMALL_STATE(1276)] = 105935, + [SMALL_STATE(1277)] = 105992, + [SMALL_STATE(1278)] = 106039, + [SMALL_STATE(1279)] = 106090, + [SMALL_STATE(1280)] = 106137, + [SMALL_STATE(1281)] = 106184, + [SMALL_STATE(1282)] = 106231, + [SMALL_STATE(1283)] = 106278, + [SMALL_STATE(1284)] = 106325, + [SMALL_STATE(1285)] = 106372, + [SMALL_STATE(1286)] = 106419, + [SMALL_STATE(1287)] = 106466, + [SMALL_STATE(1288)] = 106513, + [SMALL_STATE(1289)] = 106561, + [SMALL_STATE(1290)] = 106607, + [SMALL_STATE(1291)] = 106657, + [SMALL_STATE(1292)] = 106703, + [SMALL_STATE(1293)] = 106749, + [SMALL_STATE(1294)] = 106795, + [SMALL_STATE(1295)] = 106841, + [SMALL_STATE(1296)] = 106887, + [SMALL_STATE(1297)] = 106933, + [SMALL_STATE(1298)] = 106979, + [SMALL_STATE(1299)] = 107025, + [SMALL_STATE(1300)] = 107071, + [SMALL_STATE(1301)] = 107117, + [SMALL_STATE(1302)] = 107163, + [SMALL_STATE(1303)] = 107209, + [SMALL_STATE(1304)] = 107255, + [SMALL_STATE(1305)] = 107301, + [SMALL_STATE(1306)] = 107347, + [SMALL_STATE(1307)] = 107405, + [SMALL_STATE(1308)] = 107451, + [SMALL_STATE(1309)] = 107497, + [SMALL_STATE(1310)] = 107543, + [SMALL_STATE(1311)] = 107589, + [SMALL_STATE(1312)] = 107645, + [SMALL_STATE(1313)] = 107695, + [SMALL_STATE(1314)] = 107741, + [SMALL_STATE(1315)] = 107827, + [SMALL_STATE(1316)] = 107873, + [SMALL_STATE(1317)] = 107919, + [SMALL_STATE(1318)] = 107965, + [SMALL_STATE(1319)] = 108011, + [SMALL_STATE(1320)] = 108057, + [SMALL_STATE(1321)] = 108103, + [SMALL_STATE(1322)] = 108149, + [SMALL_STATE(1323)] = 108195, + [SMALL_STATE(1324)] = 108241, + [SMALL_STATE(1325)] = 108287, + [SMALL_STATE(1326)] = 108333, + [SMALL_STATE(1327)] = 108379, + [SMALL_STATE(1328)] = 108425, + [SMALL_STATE(1329)] = 108479, + [SMALL_STATE(1330)] = 108533, + [SMALL_STATE(1331)] = 108587, + [SMALL_STATE(1332)] = 108633, + [SMALL_STATE(1333)] = 108679, + [SMALL_STATE(1334)] = 108725, + [SMALL_STATE(1335)] = 108777, + [SMALL_STATE(1336)] = 108823, + [SMALL_STATE(1337)] = 108879, + [SMALL_STATE(1338)] = 108925, + [SMALL_STATE(1339)] = 108975, + [SMALL_STATE(1340)] = 109025, + [SMALL_STATE(1341)] = 109071, + [SMALL_STATE(1342)] = 109117, + [SMALL_STATE(1343)] = 109177, + [SMALL_STATE(1344)] = 109237, + [SMALL_STATE(1345)] = 109291, + [SMALL_STATE(1346)] = 109347, + [SMALL_STATE(1347)] = 109393, + [SMALL_STATE(1348)] = 109439, + [SMALL_STATE(1349)] = 109485, + [SMALL_STATE(1350)] = 109531, + [SMALL_STATE(1351)] = 109591, + [SMALL_STATE(1352)] = 109637, + [SMALL_STATE(1353)] = 109701, + [SMALL_STATE(1354)] = 109747, + [SMALL_STATE(1355)] = 109821, + [SMALL_STATE(1356)] = 109893, + [SMALL_STATE(1357)] = 109945, + [SMALL_STATE(1358)] = 109991, + [SMALL_STATE(1359)] = 110051, + [SMALL_STATE(1360)] = 110097, + [SMALL_STATE(1361)] = 110181, + [SMALL_STATE(1362)] = 110227, + [SMALL_STATE(1363)] = 110297, + [SMALL_STATE(1364)] = 110365, + [SMALL_STATE(1365)] = 110415, + [SMALL_STATE(1366)] = 110461, + [SMALL_STATE(1367)] = 110507, + [SMALL_STATE(1368)] = 110553, + [SMALL_STATE(1369)] = 110599, + [SMALL_STATE(1370)] = 110645, + [SMALL_STATE(1371)] = 110691, + [SMALL_STATE(1372)] = 110747, + [SMALL_STATE(1373)] = 110793, + [SMALL_STATE(1374)] = 110839, + [SMALL_STATE(1375)] = 110885, + [SMALL_STATE(1376)] = 110971, + [SMALL_STATE(1377)] = 111057, + [SMALL_STATE(1378)] = 111103, + [SMALL_STATE(1379)] = 111187, + [SMALL_STATE(1380)] = 111237, + [SMALL_STATE(1381)] = 111283, + [SMALL_STATE(1382)] = 111329, + [SMALL_STATE(1383)] = 111385, + [SMALL_STATE(1384)] = 111430, + [SMALL_STATE(1385)] = 111479, + [SMALL_STATE(1386)] = 111524, + [SMALL_STATE(1387)] = 111571, + [SMALL_STATE(1388)] = 111618, + [SMALL_STATE(1389)] = 111663, + [SMALL_STATE(1390)] = 111708, + [SMALL_STATE(1391)] = 111775, + [SMALL_STATE(1392)] = 111844, + [SMALL_STATE(1393)] = 111891, + [SMALL_STATE(1394)] = 111954, + [SMALL_STATE(1395)] = 112013, + [SMALL_STATE(1396)] = 112072, + [SMALL_STATE(1397)] = 112121, + [SMALL_STATE(1398)] = 112168, + [SMALL_STATE(1399)] = 112213, + [SMALL_STATE(1400)] = 112260, + [SMALL_STATE(1401)] = 112307, + [SMALL_STATE(1402)] = 112354, + [SMALL_STATE(1403)] = 112403, + [SMALL_STATE(1404)] = 112458, + [SMALL_STATE(1405)] = 112505, + [SMALL_STATE(1406)] = 112552, + [SMALL_STATE(1407)] = 112599, + [SMALL_STATE(1408)] = 112654, + [SMALL_STATE(1409)] = 112707, + [SMALL_STATE(1410)] = 112766, + [SMALL_STATE(1411)] = 112813, + [SMALL_STATE(1412)] = 112860, + [SMALL_STATE(1413)] = 112939, + [SMALL_STATE(1414)] = 112984, + [SMALL_STATE(1415)] = 113031, + [SMALL_STATE(1416)] = 113078, + [SMALL_STATE(1417)] = 113123, + [SMALL_STATE(1418)] = 113188, + [SMALL_STATE(1419)] = 113243, + [SMALL_STATE(1420)] = 113314, + [SMALL_STATE(1421)] = 113363, + [SMALL_STATE(1422)] = 113408, + [SMALL_STATE(1423)] = 113457, + [SMALL_STATE(1424)] = 113504, + [SMALL_STATE(1425)] = 113555, + [SMALL_STATE(1426)] = 113604, + [SMALL_STATE(1427)] = 113651, + [SMALL_STATE(1428)] = 113698, + [SMALL_STATE(1429)] = 113745, + [SMALL_STATE(1430)] = 113792, + [SMALL_STATE(1431)] = 113845, + [SMALL_STATE(1432)] = 113894, + [SMALL_STATE(1433)] = 113939, + [SMALL_STATE(1434)] = 113984, + [SMALL_STATE(1435)] = 114031, + [SMALL_STATE(1436)] = 114078, + [SMALL_STATE(1437)] = 114127, + [SMALL_STATE(1438)] = 114172, + [SMALL_STATE(1439)] = 114219, + [SMALL_STATE(1440)] = 114266, + [SMALL_STATE(1441)] = 114313, + [SMALL_STATE(1442)] = 114392, + [SMALL_STATE(1443)] = 114439, + [SMALL_STATE(1444)] = 114488, + [SMALL_STATE(1445)] = 114569, + [SMALL_STATE(1446)] = 114614, + [SMALL_STATE(1447)] = 114695, + [SMALL_STATE(1448)] = 114742, + [SMALL_STATE(1449)] = 114793, + [SMALL_STATE(1450)] = 114852, + [SMALL_STATE(1451)] = 114907, + [SMALL_STATE(1452)] = 114988, + [SMALL_STATE(1453)] = 115035, + [SMALL_STATE(1454)] = 115111, + [SMALL_STATE(1455)] = 115189, + [SMALL_STATE(1456)] = 115235, + [SMALL_STATE(1457)] = 115281, + [SMALL_STATE(1458)] = 115329, + [SMALL_STATE(1459)] = 115411, + [SMALL_STATE(1460)] = 115459, + [SMALL_STATE(1461)] = 115505, + [SMALL_STATE(1462)] = 115551, + [SMALL_STATE(1463)] = 115603, + [SMALL_STATE(1464)] = 115649, + [SMALL_STATE(1465)] = 115695, + [SMALL_STATE(1466)] = 115743, + [SMALL_STATE(1467)] = 115791, + [SMALL_STATE(1468)] = 115839, + [SMALL_STATE(1469)] = 115887, + [SMALL_STATE(1470)] = 115933, + [SMALL_STATE(1471)] = 116009, + [SMALL_STATE(1472)] = 116067, + [SMALL_STATE(1473)] = 116125, + [SMALL_STATE(1474)] = 116177, + [SMALL_STATE(1475)] = 116239, + [SMALL_STATE(1476)] = 116311, + [SMALL_STATE(1477)] = 116381, + [SMALL_STATE(1478)] = 116449, + [SMALL_STATE(1479)] = 116515, + [SMALL_STATE(1480)] = 116561, + [SMALL_STATE(1481)] = 116619, + [SMALL_STATE(1482)] = 116673, + [SMALL_STATE(1483)] = 116721, + [SMALL_STATE(1484)] = 116767, + [SMALL_STATE(1485)] = 116815, + [SMALL_STATE(1486)] = 116859, + [SMALL_STATE(1487)] = 116917, + [SMALL_STATE(1488)] = 116961, + [SMALL_STATE(1489)] = 117009, + [SMALL_STATE(1490)] = 117061, + [SMALL_STATE(1491)] = 117109, + [SMALL_STATE(1492)] = 117155, + [SMALL_STATE(1493)] = 117201, + [SMALL_STATE(1494)] = 117283, + [SMALL_STATE(1495)] = 117365, + [SMALL_STATE(1496)] = 117411, + [SMALL_STATE(1497)] = 117465, + [SMALL_STATE(1498)] = 117523, + [SMALL_STATE(1499)] = 117573, + [SMALL_STATE(1500)] = 117619, + [SMALL_STATE(1501)] = 117673, + [SMALL_STATE(1502)] = 117751, + [SMALL_STATE(1503)] = 117797, + [SMALL_STATE(1504)] = 117843, + [SMALL_STATE(1505)] = 117887, + [SMALL_STATE(1506)] = 117937, + [SMALL_STATE(1507)] = 117983, + [SMALL_STATE(1508)] = 118027, + [SMALL_STATE(1509)] = 118071, + [SMALL_STATE(1510)] = 118117, + [SMALL_STATE(1511)] = 118161, + [SMALL_STATE(1512)] = 118213, + [SMALL_STATE(1513)] = 118263, + [SMALL_STATE(1514)] = 118313, + [SMALL_STATE(1515)] = 118361, + [SMALL_STATE(1516)] = 118405, + [SMALL_STATE(1517)] = 118455, + [SMALL_STATE(1518)] = 118503, + [SMALL_STATE(1519)] = 118551, + [SMALL_STATE(1520)] = 118595, + [SMALL_STATE(1521)] = 118641, + [SMALL_STATE(1522)] = 118695, + [SMALL_STATE(1523)] = 118759, + [SMALL_STATE(1524)] = 118825, + [SMALL_STATE(1525)] = 118873, + [SMALL_STATE(1526)] = 118931, + [SMALL_STATE(1527)] = 119009, + [SMALL_STATE(1528)] = 119055, + [SMALL_STATE(1529)] = 119101, + [SMALL_STATE(1530)] = 119147, + [SMALL_STATE(1531)] = 119193, + [SMALL_STATE(1532)] = 119239, + [SMALL_STATE(1533)] = 119285, + [SMALL_STATE(1534)] = 119353, + [SMALL_STATE(1535)] = 119423, + [SMALL_STATE(1536)] = 119469, + [SMALL_STATE(1537)] = 119515, + [SMALL_STATE(1538)] = 119561, + [SMALL_STATE(1539)] = 119607, + [SMALL_STATE(1540)] = 119669, + [SMALL_STATE(1541)] = 119715, + [SMALL_STATE(1542)] = 119773, + [SMALL_STATE(1543)] = 119819, + [SMALL_STATE(1544)] = 119877, + [SMALL_STATE(1545)] = 119923, + [SMALL_STATE(1546)] = 119967, + [SMALL_STATE(1547)] = 120017, + [SMALL_STATE(1548)] = 120061, + [SMALL_STATE(1549)] = 120107, + [SMALL_STATE(1550)] = 120155, + [SMALL_STATE(1551)] = 120201, + [SMALL_STATE(1552)] = 120281, + [SMALL_STATE(1553)] = 120339, + [SMALL_STATE(1554)] = 120419, + [SMALL_STATE(1555)] = 120499, + [SMALL_STATE(1556)] = 120545, + [SMALL_STATE(1557)] = 120591, + [SMALL_STATE(1558)] = 120639, + [SMALL_STATE(1559)] = 120717, + [SMALL_STATE(1560)] = 120795, + [SMALL_STATE(1561)] = 120841, + [SMALL_STATE(1562)] = 120893, + [SMALL_STATE(1563)] = 120947, + [SMALL_STATE(1564)] = 120991, + [SMALL_STATE(1565)] = 121037, + [SMALL_STATE(1566)] = 121095, + [SMALL_STATE(1567)] = 121139, + [SMALL_STATE(1568)] = 121187, + [SMALL_STATE(1569)] = 121249, + [SMALL_STATE(1570)] = 121313, + [SMALL_STATE(1571)] = 121361, + [SMALL_STATE(1572)] = 121427, + [SMALL_STATE(1573)] = 121495, + [SMALL_STATE(1574)] = 121575, + [SMALL_STATE(1575)] = 121621, + [SMALL_STATE(1576)] = 121681, + [SMALL_STATE(1577)] = 121739, + [SMALL_STATE(1578)] = 121797, + [SMALL_STATE(1579)] = 121877, + [SMALL_STATE(1580)] = 121923, + [SMALL_STATE(1581)] = 121969, + [SMALL_STATE(1582)] = 122017, + [SMALL_STATE(1583)] = 122071, + [SMALL_STATE(1584)] = 122117, + [SMALL_STATE(1585)] = 122171, + [SMALL_STATE(1586)] = 122223, + [SMALL_STATE(1587)] = 122271, + [SMALL_STATE(1588)] = 122319, + [SMALL_STATE(1589)] = 122398, + [SMALL_STATE(1590)] = 122441, + [SMALL_STATE(1591)] = 122484, + [SMALL_STATE(1592)] = 122527, + [SMALL_STATE(1593)] = 122570, + [SMALL_STATE(1594)] = 122613, + [SMALL_STATE(1595)] = 122656, + [SMALL_STATE(1596)] = 122699, + [SMALL_STATE(1597)] = 122742, + [SMALL_STATE(1598)] = 122793, + [SMALL_STATE(1599)] = 122836, + [SMALL_STATE(1600)] = 122879, + [SMALL_STATE(1601)] = 122932, + [SMALL_STATE(1602)] = 122975, + [SMALL_STATE(1603)] = 123018, + [SMALL_STATE(1604)] = 123063, + [SMALL_STATE(1605)] = 123108, + [SMALL_STATE(1606)] = 123153, + [SMALL_STATE(1607)] = 123198, + [SMALL_STATE(1608)] = 123243, + [SMALL_STATE(1609)] = 123286, + [SMALL_STATE(1610)] = 123329, + [SMALL_STATE(1611)] = 123372, + [SMALL_STATE(1612)] = 123417, + [SMALL_STATE(1613)] = 123462, + [SMALL_STATE(1614)] = 123505, + [SMALL_STATE(1615)] = 123550, + [SMALL_STATE(1616)] = 123593, + [SMALL_STATE(1617)] = 123638, + [SMALL_STATE(1618)] = 123683, + [SMALL_STATE(1619)] = 123726, + [SMALL_STATE(1620)] = 123769, + [SMALL_STATE(1621)] = 123816, + [SMALL_STATE(1622)] = 123859, + [SMALL_STATE(1623)] = 123902, + [SMALL_STATE(1624)] = 123945, + [SMALL_STATE(1625)] = 123988, + [SMALL_STATE(1626)] = 124031, + [SMALL_STATE(1627)] = 124084, + [SMALL_STATE(1628)] = 124127, + [SMALL_STATE(1629)] = 124170, + [SMALL_STATE(1630)] = 124213, + [SMALL_STATE(1631)] = 124256, + [SMALL_STATE(1632)] = 124299, + [SMALL_STATE(1633)] = 124342, + [SMALL_STATE(1634)] = 124385, + [SMALL_STATE(1635)] = 124428, + [SMALL_STATE(1636)] = 124471, + [SMALL_STATE(1637)] = 124514, + [SMALL_STATE(1638)] = 124557, + [SMALL_STATE(1639)] = 124600, + [SMALL_STATE(1640)] = 124643, + [SMALL_STATE(1641)] = 124686, + [SMALL_STATE(1642)] = 124729, + [SMALL_STATE(1643)] = 124772, + [SMALL_STATE(1644)] = 124815, + [SMALL_STATE(1645)] = 124892, + [SMALL_STATE(1646)] = 124943, + [SMALL_STATE(1647)] = 125000, + [SMALL_STATE(1648)] = 125043, + [SMALL_STATE(1649)] = 125088, + [SMALL_STATE(1650)] = 125133, + [SMALL_STATE(1651)] = 125176, + [SMALL_STATE(1652)] = 125229, + [SMALL_STATE(1653)] = 125272, + [SMALL_STATE(1654)] = 125315, + [SMALL_STATE(1655)] = 125358, + [SMALL_STATE(1656)] = 125405, + [SMALL_STATE(1657)] = 125452, + [SMALL_STATE(1658)] = 125503, + [SMALL_STATE(1659)] = 125560, + [SMALL_STATE(1660)] = 125607, + [SMALL_STATE(1661)] = 125664, + [SMALL_STATE(1662)] = 125721, + [SMALL_STATE(1663)] = 125782, + [SMALL_STATE(1664)] = 125835, + [SMALL_STATE(1665)] = 125904, + [SMALL_STATE(1666)] = 125971, + [SMALL_STATE(1667)] = 126022, + [SMALL_STATE(1668)] = 126067, + [SMALL_STATE(1669)] = 126132, + [SMALL_STATE(1670)] = 126175, + [SMALL_STATE(1671)] = 126252, + [SMALL_STATE(1672)] = 126315, + [SMALL_STATE(1673)] = 126358, + [SMALL_STATE(1674)] = 126405, + [SMALL_STATE(1675)] = 126450, + [SMALL_STATE(1676)] = 126529, + [SMALL_STATE(1677)] = 126572, + [SMALL_STATE(1678)] = 126617, + [SMALL_STATE(1679)] = 126660, + [SMALL_STATE(1680)] = 126739, + [SMALL_STATE(1681)] = 126782, + [SMALL_STATE(1682)] = 126825, + [SMALL_STATE(1683)] = 126874, + [SMALL_STATE(1684)] = 126919, + [SMALL_STATE(1685)] = 126964, + [SMALL_STATE(1686)] = 127011, + [SMALL_STATE(1687)] = 127056, + [SMALL_STATE(1688)] = 127103, + [SMALL_STATE(1689)] = 127146, + [SMALL_STATE(1690)] = 127193, + [SMALL_STATE(1691)] = 127240, + [SMALL_STATE(1692)] = 127283, + [SMALL_STATE(1693)] = 127326, + [SMALL_STATE(1694)] = 127369, + [SMALL_STATE(1695)] = 127414, + [SMALL_STATE(1696)] = 127457, + [SMALL_STATE(1697)] = 127502, + [SMALL_STATE(1698)] = 127547, + [SMALL_STATE(1699)] = 127592, + [SMALL_STATE(1700)] = 127635, + [SMALL_STATE(1701)] = 127678, + [SMALL_STATE(1702)] = 127723, + [SMALL_STATE(1703)] = 127766, + [SMALL_STATE(1704)] = 127811, + [SMALL_STATE(1705)] = 127854, + [SMALL_STATE(1706)] = 127897, + [SMALL_STATE(1707)] = 127940, + [SMALL_STATE(1708)] = 127983, + [SMALL_STATE(1709)] = 128026, + [SMALL_STATE(1710)] = 128069, + [SMALL_STATE(1711)] = 128112, + [SMALL_STATE(1712)] = 128159, + [SMALL_STATE(1713)] = 128202, + [SMALL_STATE(1714)] = 128245, + [SMALL_STATE(1715)] = 128288, + [SMALL_STATE(1716)] = 128331, + [SMALL_STATE(1717)] = 128374, + [SMALL_STATE(1718)] = 128417, + [SMALL_STATE(1719)] = 128460, + [SMALL_STATE(1720)] = 128505, + [SMALL_STATE(1721)] = 128548, + [SMALL_STATE(1722)] = 128591, + [SMALL_STATE(1723)] = 128636, + [SMALL_STATE(1724)] = 128679, + [SMALL_STATE(1725)] = 128722, + [SMALL_STATE(1726)] = 128775, + [SMALL_STATE(1727)] = 128818, + [SMALL_STATE(1728)] = 128861, + [SMALL_STATE(1729)] = 128904, + [SMALL_STATE(1730)] = 128947, + [SMALL_STATE(1731)] = 128990, + [SMALL_STATE(1732)] = 129033, + [SMALL_STATE(1733)] = 129076, + [SMALL_STATE(1734)] = 129119, + [SMALL_STATE(1735)] = 129162, + [SMALL_STATE(1736)] = 129205, + [SMALL_STATE(1737)] = 129248, + [SMALL_STATE(1738)] = 129291, + [SMALL_STATE(1739)] = 129334, + [SMALL_STATE(1740)] = 129377, + [SMALL_STATE(1741)] = 129420, + [SMALL_STATE(1742)] = 129463, + [SMALL_STATE(1743)] = 129506, + [SMALL_STATE(1744)] = 129549, + [SMALL_STATE(1745)] = 129592, + [SMALL_STATE(1746)] = 129635, + [SMALL_STATE(1747)] = 129678, + [SMALL_STATE(1748)] = 129721, + [SMALL_STATE(1749)] = 129764, + [SMALL_STATE(1750)] = 129807, + [SMALL_STATE(1751)] = 129850, + [SMALL_STATE(1752)] = 129893, + [SMALL_STATE(1753)] = 129936, + [SMALL_STATE(1754)] = 129979, + [SMALL_STATE(1755)] = 130022, + [SMALL_STATE(1756)] = 130065, + [SMALL_STATE(1757)] = 130108, + [SMALL_STATE(1758)] = 130151, + [SMALL_STATE(1759)] = 130194, + [SMALL_STATE(1760)] = 130237, + [SMALL_STATE(1761)] = 130280, + [SMALL_STATE(1762)] = 130323, + [SMALL_STATE(1763)] = 130368, + [SMALL_STATE(1764)] = 130413, + [SMALL_STATE(1765)] = 130458, + [SMALL_STATE(1766)] = 130503, + [SMALL_STATE(1767)] = 130548, + [SMALL_STATE(1768)] = 130597, + [SMALL_STATE(1769)] = 130640, + [SMALL_STATE(1770)] = 130683, + [SMALL_STATE(1771)] = 130726, + [SMALL_STATE(1772)] = 130769, + [SMALL_STATE(1773)] = 130812, + [SMALL_STATE(1774)] = 130855, + [SMALL_STATE(1775)] = 130898, + [SMALL_STATE(1776)] = 130941, + [SMALL_STATE(1777)] = 130984, + [SMALL_STATE(1778)] = 131027, + [SMALL_STATE(1779)] = 131070, + [SMALL_STATE(1780)] = 131113, + [SMALL_STATE(1781)] = 131156, + [SMALL_STATE(1782)] = 131199, + [SMALL_STATE(1783)] = 131241, + [SMALL_STATE(1784)] = 131283, + [SMALL_STATE(1785)] = 131325, + [SMALL_STATE(1786)] = 131367, + [SMALL_STATE(1787)] = 131409, + [SMALL_STATE(1788)] = 131451, + [SMALL_STATE(1789)] = 131493, + [SMALL_STATE(1790)] = 131535, + [SMALL_STATE(1791)] = 131577, + [SMALL_STATE(1792)] = 131623, + [SMALL_STATE(1793)] = 131665, + [SMALL_STATE(1794)] = 131707, + [SMALL_STATE(1795)] = 131749, + [SMALL_STATE(1796)] = 131791, + [SMALL_STATE(1797)] = 131833, + [SMALL_STATE(1798)] = 131875, + [SMALL_STATE(1799)] = 131917, + [SMALL_STATE(1800)] = 131959, + [SMALL_STATE(1801)] = 132001, + [SMALL_STATE(1802)] = 132043, + [SMALL_STATE(1803)] = 132085, + [SMALL_STATE(1804)] = 132127, + [SMALL_STATE(1805)] = 132169, + [SMALL_STATE(1806)] = 132211, + [SMALL_STATE(1807)] = 132253, + [SMALL_STATE(1808)] = 132295, + [SMALL_STATE(1809)] = 132337, + [SMALL_STATE(1810)] = 132379, + [SMALL_STATE(1811)] = 132421, + [SMALL_STATE(1812)] = 132463, + [SMALL_STATE(1813)] = 132505, + [SMALL_STATE(1814)] = 132547, + [SMALL_STATE(1815)] = 132589, + [SMALL_STATE(1816)] = 132631, + [SMALL_STATE(1817)] = 132673, + [SMALL_STATE(1818)] = 132715, + [SMALL_STATE(1819)] = 132757, + [SMALL_STATE(1820)] = 132801, + [SMALL_STATE(1821)] = 132843, + [SMALL_STATE(1822)] = 132885, + [SMALL_STATE(1823)] = 132927, + [SMALL_STATE(1824)] = 132969, + [SMALL_STATE(1825)] = 133011, + [SMALL_STATE(1826)] = 133053, + [SMALL_STATE(1827)] = 133095, + [SMALL_STATE(1828)] = 133137, + [SMALL_STATE(1829)] = 133179, + [SMALL_STATE(1830)] = 133225, + [SMALL_STATE(1831)] = 133267, + [SMALL_STATE(1832)] = 133309, + [SMALL_STATE(1833)] = 133355, + [SMALL_STATE(1834)] = 133397, + [SMALL_STATE(1835)] = 133439, + [SMALL_STATE(1836)] = 133481, + [SMALL_STATE(1837)] = 133527, + [SMALL_STATE(1838)] = 133569, + [SMALL_STATE(1839)] = 133611, + [SMALL_STATE(1840)] = 133653, + [SMALL_STATE(1841)] = 133695, + [SMALL_STATE(1842)] = 133737, + [SMALL_STATE(1843)] = 133779, + [SMALL_STATE(1844)] = 133821, + [SMALL_STATE(1845)] = 133863, + [SMALL_STATE(1846)] = 133905, + [SMALL_STATE(1847)] = 133947, + [SMALL_STATE(1848)] = 133989, + [SMALL_STATE(1849)] = 134031, + [SMALL_STATE(1850)] = 134073, + [SMALL_STATE(1851)] = 134119, + [SMALL_STATE(1852)] = 134161, + [SMALL_STATE(1853)] = 134203, + [SMALL_STATE(1854)] = 134245, + [SMALL_STATE(1855)] = 134287, + [SMALL_STATE(1856)] = 134329, + [SMALL_STATE(1857)] = 134371, + [SMALL_STATE(1858)] = 134413, + [SMALL_STATE(1859)] = 134455, + [SMALL_STATE(1860)] = 134497, + [SMALL_STATE(1861)] = 134539, + [SMALL_STATE(1862)] = 134581, + [SMALL_STATE(1863)] = 134623, + [SMALL_STATE(1864)] = 134667, + [SMALL_STATE(1865)] = 134709, + [SMALL_STATE(1866)] = 134751, + [SMALL_STATE(1867)] = 134793, + [SMALL_STATE(1868)] = 134835, + [SMALL_STATE(1869)] = 134877, + [SMALL_STATE(1870)] = 134919, + [SMALL_STATE(1871)] = 134961, + [SMALL_STATE(1872)] = 135003, + [SMALL_STATE(1873)] = 135045, + [SMALL_STATE(1874)] = 135091, + [SMALL_STATE(1875)] = 135135, + [SMALL_STATE(1876)] = 135177, + [SMALL_STATE(1877)] = 135219, + [SMALL_STATE(1878)] = 135265, + [SMALL_STATE(1879)] = 135307, + [SMALL_STATE(1880)] = 135349, + [SMALL_STATE(1881)] = 135391, + [SMALL_STATE(1882)] = 135435, + [SMALL_STATE(1883)] = 135477, + [SMALL_STATE(1884)] = 135529, + [SMALL_STATE(1885)] = 135571, + [SMALL_STATE(1886)] = 135613, + [SMALL_STATE(1887)] = 135655, + [SMALL_STATE(1888)] = 135699, + [SMALL_STATE(1889)] = 135741, + [SMALL_STATE(1890)] = 135783, + [SMALL_STATE(1891)] = 135825, + [SMALL_STATE(1892)] = 135867, + [SMALL_STATE(1893)] = 135919, + [SMALL_STATE(1894)] = 135961, + [SMALL_STATE(1895)] = 136003, + [SMALL_STATE(1896)] = 136045, + [SMALL_STATE(1897)] = 136087, + [SMALL_STATE(1898)] = 136129, + [SMALL_STATE(1899)] = 136175, + [SMALL_STATE(1900)] = 136217, + [SMALL_STATE(1901)] = 136259, + [SMALL_STATE(1902)] = 136301, + [SMALL_STATE(1903)] = 136343, + [SMALL_STATE(1904)] = 136385, + [SMALL_STATE(1905)] = 136427, + [SMALL_STATE(1906)] = 136469, + [SMALL_STATE(1907)] = 136511, + [SMALL_STATE(1908)] = 136553, + [SMALL_STATE(1909)] = 136595, + [SMALL_STATE(1910)] = 136637, + [SMALL_STATE(1911)] = 136678, + [SMALL_STATE(1912)] = 136729, + [SMALL_STATE(1913)] = 136774, + [SMALL_STATE(1914)] = 136819, + [SMALL_STATE(1915)] = 136860, + [SMALL_STATE(1916)] = 136907, + [SMALL_STATE(1917)] = 136954, + [SMALL_STATE(1918)] = 136995, + [SMALL_STATE(1919)] = 137044, + [SMALL_STATE(1920)] = 137085, + [SMALL_STATE(1921)] = 137126, + [SMALL_STATE(1922)] = 137167, + [SMALL_STATE(1923)] = 137212, + [SMALL_STATE(1924)] = 137253, + [SMALL_STATE(1925)] = 137306, + [SMALL_STATE(1926)] = 137351, + [SMALL_STATE(1927)] = 137392, + [SMALL_STATE(1928)] = 137437, + [SMALL_STATE(1929)] = 137478, + [SMALL_STATE(1930)] = 137519, + [SMALL_STATE(1931)] = 137594, + [SMALL_STATE(1932)] = 137651, + [SMALL_STATE(1933)] = 137692, + [SMALL_STATE(1934)] = 137733, + [SMALL_STATE(1935)] = 137774, + [SMALL_STATE(1936)] = 137815, + [SMALL_STATE(1937)] = 137872, + [SMALL_STATE(1938)] = 137947, + [SMALL_STATE(1939)] = 137988, + [SMALL_STATE(1940)] = 138029, + [SMALL_STATE(1941)] = 138084, + [SMALL_STATE(1942)] = 138125, + [SMALL_STATE(1943)] = 138180, + [SMALL_STATE(1944)] = 138239, + [SMALL_STATE(1945)] = 138294, + [SMALL_STATE(1946)] = 138369, + [SMALL_STATE(1947)] = 138414, + [SMALL_STATE(1948)] = 138455, + [SMALL_STATE(1949)] = 138522, + [SMALL_STATE(1950)] = 138563, + [SMALL_STATE(1951)] = 138604, + [SMALL_STATE(1952)] = 138669, + [SMALL_STATE(1953)] = 138710, + [SMALL_STATE(1954)] = 138751, + [SMALL_STATE(1955)] = 138814, + [SMALL_STATE(1956)] = 138855, + [SMALL_STATE(1957)] = 138896, + [SMALL_STATE(1958)] = 138957, + [SMALL_STATE(1959)] = 138998, + [SMALL_STATE(1960)] = 139039, + [SMALL_STATE(1961)] = 139084, + [SMALL_STATE(1962)] = 139125, + [SMALL_STATE(1963)] = 139200, + [SMALL_STATE(1964)] = 139241, + [SMALL_STATE(1965)] = 139282, + [SMALL_STATE(1966)] = 139323, + [SMALL_STATE(1967)] = 139364, + [SMALL_STATE(1968)] = 139439, + [SMALL_STATE(1969)] = 139480, + [SMALL_STATE(1970)] = 139521, + [SMALL_STATE(1971)] = 139562, + [SMALL_STATE(1972)] = 139603, + [SMALL_STATE(1973)] = 139644, + [SMALL_STATE(1974)] = 139685, + [SMALL_STATE(1975)] = 139726, + [SMALL_STATE(1976)] = 139767, + [SMALL_STATE(1977)] = 139808, + [SMALL_STATE(1978)] = 139863, + [SMALL_STATE(1979)] = 139920, + [SMALL_STATE(1980)] = 139961, + [SMALL_STATE(1981)] = 140002, + [SMALL_STATE(1982)] = 140043, + [SMALL_STATE(1983)] = 140088, + [SMALL_STATE(1984)] = 140129, + [SMALL_STATE(1985)] = 140170, + [SMALL_STATE(1986)] = 140215, + [SMALL_STATE(1987)] = 140256, + [SMALL_STATE(1988)] = 140297, + [SMALL_STATE(1989)] = 140338, + [SMALL_STATE(1990)] = 140379, + [SMALL_STATE(1991)] = 140420, + [SMALL_STATE(1992)] = 140465, + [SMALL_STATE(1993)] = 140507, + [SMALL_STATE(1994)] = 140557, + [SMALL_STATE(1995)] = 140607, + [SMALL_STATE(1996)] = 140649, + [SMALL_STATE(1997)] = 140691, + [SMALL_STATE(1998)] = 140733, + [SMALL_STATE(1999)] = 140775, + [SMALL_STATE(2000)] = 140818, + [SMALL_STATE(2001)] = 140861, + [SMALL_STATE(2002)] = 140898, + [SMALL_STATE(2003)] = 140954, + [SMALL_STATE(2004)] = 141010, + [SMALL_STATE(2005)] = 141066, + [SMALL_STATE(2006)] = 141122, + [SMALL_STATE(2007)] = 141178, + [SMALL_STATE(2008)] = 141234, + [SMALL_STATE(2009)] = 141290, + [SMALL_STATE(2010)] = 141346, + [SMALL_STATE(2011)] = 141402, + [SMALL_STATE(2012)] = 141458, + [SMALL_STATE(2013)] = 141514, + [SMALL_STATE(2014)] = 141570, + [SMALL_STATE(2015)] = 141604, + [SMALL_STATE(2016)] = 141660, + [SMALL_STATE(2017)] = 141716, + [SMALL_STATE(2018)] = 141772, + [SMALL_STATE(2019)] = 141828, + [SMALL_STATE(2020)] = 141884, + [SMALL_STATE(2021)] = 141940, + [SMALL_STATE(2022)] = 141996, + [SMALL_STATE(2023)] = 142052, + [SMALL_STATE(2024)] = 142108, + [SMALL_STATE(2025)] = 142164, + [SMALL_STATE(2026)] = 142220, + [SMALL_STATE(2027)] = 142276, + [SMALL_STATE(2028)] = 142332, + [SMALL_STATE(2029)] = 142388, + [SMALL_STATE(2030)] = 142444, + [SMALL_STATE(2031)] = 142500, + [SMALL_STATE(2032)] = 142556, + [SMALL_STATE(2033)] = 142612, + [SMALL_STATE(2034)] = 142668, + [SMALL_STATE(2035)] = 142724, + [SMALL_STATE(2036)] = 142780, + [SMALL_STATE(2037)] = 142836, + [SMALL_STATE(2038)] = 142892, + [SMALL_STATE(2039)] = 142948, + [SMALL_STATE(2040)] = 143004, + [SMALL_STATE(2041)] = 143060, + [SMALL_STATE(2042)] = 143116, + [SMALL_STATE(2043)] = 143172, + [SMALL_STATE(2044)] = 143228, + [SMALL_STATE(2045)] = 143284, + [SMALL_STATE(2046)] = 143340, + [SMALL_STATE(2047)] = 143396, + [SMALL_STATE(2048)] = 143452, + [SMALL_STATE(2049)] = 143508, + [SMALL_STATE(2050)] = 143564, + [SMALL_STATE(2051)] = 143620, + [SMALL_STATE(2052)] = 143676, + [SMALL_STATE(2053)] = 143732, + [SMALL_STATE(2054)] = 143788, + [SMALL_STATE(2055)] = 143844, + [SMALL_STATE(2056)] = 143897, + [SMALL_STATE(2057)] = 143950, + [SMALL_STATE(2058)] = 144003, + [SMALL_STATE(2059)] = 144056, + [SMALL_STATE(2060)] = 144109, + [SMALL_STATE(2061)] = 144162, + [SMALL_STATE(2062)] = 144215, + [SMALL_STATE(2063)] = 144268, + [SMALL_STATE(2064)] = 144321, + [SMALL_STATE(2065)] = 144374, + [SMALL_STATE(2066)] = 144427, + [SMALL_STATE(2067)] = 144480, + [SMALL_STATE(2068)] = 144533, + [SMALL_STATE(2069)] = 144586, + [SMALL_STATE(2070)] = 144639, + [SMALL_STATE(2071)] = 144692, + [SMALL_STATE(2072)] = 144745, + [SMALL_STATE(2073)] = 144800, + [SMALL_STATE(2074)] = 144853, + [SMALL_STATE(2075)] = 144906, + [SMALL_STATE(2076)] = 144959, + [SMALL_STATE(2077)] = 145012, + [SMALL_STATE(2078)] = 145065, + [SMALL_STATE(2079)] = 145118, + [SMALL_STATE(2080)] = 145171, + [SMALL_STATE(2081)] = 145224, + [SMALL_STATE(2082)] = 145277, + [SMALL_STATE(2083)] = 145330, + [SMALL_STATE(2084)] = 145385, + [SMALL_STATE(2085)] = 145438, + [SMALL_STATE(2086)] = 145491, + [SMALL_STATE(2087)] = 145544, + [SMALL_STATE(2088)] = 145599, + [SMALL_STATE(2089)] = 145642, + [SMALL_STATE(2090)] = 145695, + [SMALL_STATE(2091)] = 145750, + [SMALL_STATE(2092)] = 145803, + [SMALL_STATE(2093)] = 145856, + [SMALL_STATE(2094)] = 145909, + [SMALL_STATE(2095)] = 145962, + [SMALL_STATE(2096)] = 146005, + [SMALL_STATE(2097)] = 146058, + [SMALL_STATE(2098)] = 146111, + [SMALL_STATE(2099)] = 146154, + [SMALL_STATE(2100)] = 146209, + [SMALL_STATE(2101)] = 146262, + [SMALL_STATE(2102)] = 146315, + [SMALL_STATE(2103)] = 146368, + [SMALL_STATE(2104)] = 146421, + [SMALL_STATE(2105)] = 146474, + [SMALL_STATE(2106)] = 146529, + [SMALL_STATE(2107)] = 146582, + [SMALL_STATE(2108)] = 146637, + [SMALL_STATE(2109)] = 146690, + [SMALL_STATE(2110)] = 146743, + [SMALL_STATE(2111)] = 146796, + [SMALL_STATE(2112)] = 146849, + [SMALL_STATE(2113)] = 146902, + [SMALL_STATE(2114)] = 146955, + [SMALL_STATE(2115)] = 147008, + [SMALL_STATE(2116)] = 147063, + [SMALL_STATE(2117)] = 147106, + [SMALL_STATE(2118)] = 147159, + [SMALL_STATE(2119)] = 147212, + [SMALL_STATE(2120)] = 147267, + [SMALL_STATE(2121)] = 147320, + [SMALL_STATE(2122)] = 147373, + [SMALL_STATE(2123)] = 147426, + [SMALL_STATE(2124)] = 147479, + [SMALL_STATE(2125)] = 147524, + [SMALL_STATE(2126)] = 147577, + [SMALL_STATE(2127)] = 147630, + [SMALL_STATE(2128)] = 147683, + [SMALL_STATE(2129)] = 147736, + [SMALL_STATE(2130)] = 147789, + [SMALL_STATE(2131)] = 147844, + [SMALL_STATE(2132)] = 147897, + [SMALL_STATE(2133)] = 147950, + [SMALL_STATE(2134)] = 148003, + [SMALL_STATE(2135)] = 148056, + [SMALL_STATE(2136)] = 148109, + [SMALL_STATE(2137)] = 148162, + [SMALL_STATE(2138)] = 148215, + [SMALL_STATE(2139)] = 148270, + [SMALL_STATE(2140)] = 148323, + [SMALL_STATE(2141)] = 148376, + [SMALL_STATE(2142)] = 148429, + [SMALL_STATE(2143)] = 148482, + [SMALL_STATE(2144)] = 148535, + [SMALL_STATE(2145)] = 148588, + [SMALL_STATE(2146)] = 148641, + [SMALL_STATE(2147)] = 148694, + [SMALL_STATE(2148)] = 148747, + [SMALL_STATE(2149)] = 148800, + [SMALL_STATE(2150)] = 148853, + [SMALL_STATE(2151)] = 148896, + [SMALL_STATE(2152)] = 148949, + [SMALL_STATE(2153)] = 148990, + [SMALL_STATE(2154)] = 149031, + [SMALL_STATE(2155)] = 149072, + [SMALL_STATE(2156)] = 149113, + [SMALL_STATE(2157)] = 149154, + [SMALL_STATE(2158)] = 149192, + [SMALL_STATE(2159)] = 149230, + [SMALL_STATE(2160)] = 149268, + [SMALL_STATE(2161)] = 149306, + [SMALL_STATE(2162)] = 149344, + [SMALL_STATE(2163)] = 149381, + [SMALL_STATE(2164)] = 149418, + [SMALL_STATE(2165)] = 149455, + [SMALL_STATE(2166)] = 149492, + [SMALL_STATE(2167)] = 149529, + [SMALL_STATE(2168)] = 149566, + [SMALL_STATE(2169)] = 149603, + [SMALL_STATE(2170)] = 149640, + [SMALL_STATE(2171)] = 149677, + [SMALL_STATE(2172)] = 149714, + [SMALL_STATE(2173)] = 149751, + [SMALL_STATE(2174)] = 149788, + [SMALL_STATE(2175)] = 149825, + [SMALL_STATE(2176)] = 149862, + [SMALL_STATE(2177)] = 149899, + [SMALL_STATE(2178)] = 149935, + [SMALL_STATE(2179)] = 149971, + [SMALL_STATE(2180)] = 150007, + [SMALL_STATE(2181)] = 150043, + [SMALL_STATE(2182)] = 150079, + [SMALL_STATE(2183)] = 150113, + [SMALL_STATE(2184)] = 150147, + [SMALL_STATE(2185)] = 150181, + [SMALL_STATE(2186)] = 150215, + [SMALL_STATE(2187)] = 150249, + [SMALL_STATE(2188)] = 150294, + [SMALL_STATE(2189)] = 150321, + [SMALL_STATE(2190)] = 150368, + [SMALL_STATE(2191)] = 150401, + [SMALL_STATE(2192)] = 150428, + [SMALL_STATE(2193)] = 150457, + [SMALL_STATE(2194)] = 150504, + [SMALL_STATE(2195)] = 150551, + [SMALL_STATE(2196)] = 150598, + [SMALL_STATE(2197)] = 150645, + [SMALL_STATE(2198)] = 150692, + [SMALL_STATE(2199)] = 150739, + [SMALL_STATE(2200)] = 150776, + [SMALL_STATE(2201)] = 150803, + [SMALL_STATE(2202)] = 150848, + [SMALL_STATE(2203)] = 150895, + [SMALL_STATE(2204)] = 150942, + [SMALL_STATE(2205)] = 150988, + [SMALL_STATE(2206)] = 151032, + [SMALL_STATE(2207)] = 151078, + [SMALL_STATE(2208)] = 151116, + [SMALL_STATE(2209)] = 151162, + [SMALL_STATE(2210)] = 151208, + [SMALL_STATE(2211)] = 151254, + [SMALL_STATE(2212)] = 151292, + [SMALL_STATE(2213)] = 151338, + [SMALL_STATE(2214)] = 151384, + [SMALL_STATE(2215)] = 151428, + [SMALL_STATE(2216)] = 151470, + [SMALL_STATE(2217)] = 151516, + [SMALL_STATE(2218)] = 151562, + [SMALL_STATE(2219)] = 151606, + [SMALL_STATE(2220)] = 151650, + [SMALL_STATE(2221)] = 151675, + [SMALL_STATE(2222)] = 151700, + [SMALL_STATE(2223)] = 151731, + [SMALL_STATE(2224)] = 151772, + [SMALL_STATE(2225)] = 151813, + [SMALL_STATE(2226)] = 151838, + [SMALL_STATE(2227)] = 151873, + [SMALL_STATE(2228)] = 151897, + [SMALL_STATE(2229)] = 151933, + [SMALL_STATE(2230)] = 151973, + [SMALL_STATE(2231)] = 152013, + [SMALL_STATE(2232)] = 152053, + [SMALL_STATE(2233)] = 152093, + [SMALL_STATE(2234)] = 152133, + [SMALL_STATE(2235)] = 152173, + [SMALL_STATE(2236)] = 152205, + [SMALL_STATE(2237)] = 152241, + [SMALL_STATE(2238)] = 152277, + [SMALL_STATE(2239)] = 152313, + [SMALL_STATE(2240)] = 152345, + [SMALL_STATE(2241)] = 152385, + [SMALL_STATE(2242)] = 152419, + [SMALL_STATE(2243)] = 152455, + [SMALL_STATE(2244)] = 152485, + [SMALL_STATE(2245)] = 152521, + [SMALL_STATE(2246)] = 152545, + [SMALL_STATE(2247)] = 152581, + [SMALL_STATE(2248)] = 152621, + [SMALL_STATE(2249)] = 152657, + [SMALL_STATE(2250)] = 152683, + [SMALL_STATE(2251)] = 152719, + [SMALL_STATE(2252)] = 152743, + [SMALL_STATE(2253)] = 152783, + [SMALL_STATE(2254)] = 152818, + [SMALL_STATE(2255)] = 152855, + [SMALL_STATE(2256)] = 152886, + [SMALL_STATE(2257)] = 152917, + [SMALL_STATE(2258)] = 152948, + [SMALL_STATE(2259)] = 152983, + [SMALL_STATE(2260)] = 153020, + [SMALL_STATE(2261)] = 153053, + [SMALL_STATE(2262)] = 153084, + [SMALL_STATE(2263)] = 153121, + [SMALL_STATE(2264)] = 153152, + [SMALL_STATE(2265)] = 153189, + [SMALL_STATE(2266)] = 153218, + [SMALL_STATE(2267)] = 153253, + [SMALL_STATE(2268)] = 153284, + [SMALL_STATE(2269)] = 153315, + [SMALL_STATE(2270)] = 153338, + [SMALL_STATE(2271)] = 153361, + [SMALL_STATE(2272)] = 153384, + [SMALL_STATE(2273)] = 153415, + [SMALL_STATE(2274)] = 153438, + [SMALL_STATE(2275)] = 153469, + [SMALL_STATE(2276)] = 153500, + [SMALL_STATE(2277)] = 153533, + [SMALL_STATE(2278)] = 153564, + [SMALL_STATE(2279)] = 153587, + [SMALL_STATE(2280)] = 153624, + [SMALL_STATE(2281)] = 153655, + [SMALL_STATE(2282)] = 153684, + [SMALL_STATE(2283)] = 153719, + [SMALL_STATE(2284)] = 153752, + [SMALL_STATE(2285)] = 153783, + [SMALL_STATE(2286)] = 153814, + [SMALL_STATE(2287)] = 153847, + [SMALL_STATE(2288)] = 153884, + [SMALL_STATE(2289)] = 153917, + [SMALL_STATE(2290)] = 153954, + [SMALL_STATE(2291)] = 153977, + [SMALL_STATE(2292)] = 154008, + [SMALL_STATE(2293)] = 154043, + [SMALL_STATE(2294)] = 154074, + [SMALL_STATE(2295)] = 154111, + [SMALL_STATE(2296)] = 154136, + [SMALL_STATE(2297)] = 154169, + [SMALL_STATE(2298)] = 154202, + [SMALL_STATE(2299)] = 154233, + [SMALL_STATE(2300)] = 154264, + [SMALL_STATE(2301)] = 154289, + [SMALL_STATE(2302)] = 154326, + [SMALL_STATE(2303)] = 154357, + [SMALL_STATE(2304)] = 154392, + [SMALL_STATE(2305)] = 154425, + [SMALL_STATE(2306)] = 154458, + [SMALL_STATE(2307)] = 154495, + [SMALL_STATE(2308)] = 154520, + [SMALL_STATE(2309)] = 154548, + [SMALL_STATE(2310)] = 154576, + [SMALL_STATE(2311)] = 154610, + [SMALL_STATE(2312)] = 154638, + [SMALL_STATE(2313)] = 154672, + [SMALL_STATE(2314)] = 154704, + [SMALL_STATE(2315)] = 154732, + [SMALL_STATE(2316)] = 154760, + [SMALL_STATE(2317)] = 154788, + [SMALL_STATE(2318)] = 154816, + [SMALL_STATE(2319)] = 154850, + [SMALL_STATE(2320)] = 154884, + [SMALL_STATE(2321)] = 154918, + [SMALL_STATE(2322)] = 154948, + [SMALL_STATE(2323)] = 154970, + [SMALL_STATE(2324)] = 154998, + [SMALL_STATE(2325)] = 155030, + [SMALL_STATE(2326)] = 155058, + [SMALL_STATE(2327)] = 155086, + [SMALL_STATE(2328)] = 155114, + [SMALL_STATE(2329)] = 155148, + [SMALL_STATE(2330)] = 155176, + [SMALL_STATE(2331)] = 155204, + [SMALL_STATE(2332)] = 155238, + [SMALL_STATE(2333)] = 155270, + [SMALL_STATE(2334)] = 155298, + [SMALL_STATE(2335)] = 155326, + [SMALL_STATE(2336)] = 155360, + [SMALL_STATE(2337)] = 155388, + [SMALL_STATE(2338)] = 155422, + [SMALL_STATE(2339)] = 155450, + [SMALL_STATE(2340)] = 155484, + [SMALL_STATE(2341)] = 155518, + [SMALL_STATE(2342)] = 155552, + [SMALL_STATE(2343)] = 155574, + [SMALL_STATE(2344)] = 155608, + [SMALL_STATE(2345)] = 155642, + [SMALL_STATE(2346)] = 155676, + [SMALL_STATE(2347)] = 155704, + [SMALL_STATE(2348)] = 155736, + [SMALL_STATE(2349)] = 155768, + [SMALL_STATE(2350)] = 155798, + [SMALL_STATE(2351)] = 155832, + [SMALL_STATE(2352)] = 155860, + [SMALL_STATE(2353)] = 155892, + [SMALL_STATE(2354)] = 155926, + [SMALL_STATE(2355)] = 155958, + [SMALL_STATE(2356)] = 155990, + [SMALL_STATE(2357)] = 156024, + [SMALL_STATE(2358)] = 156058, + [SMALL_STATE(2359)] = 156092, + [SMALL_STATE(2360)] = 156114, + [SMALL_STATE(2361)] = 156148, + [SMALL_STATE(2362)] = 156176, + [SMALL_STATE(2363)] = 156208, + [SMALL_STATE(2364)] = 156239, + [SMALL_STATE(2365)] = 156270, + [SMALL_STATE(2366)] = 156301, + [SMALL_STATE(2367)] = 156326, + [SMALL_STATE(2368)] = 156357, + [SMALL_STATE(2369)] = 156388, + [SMALL_STATE(2370)] = 156413, + [SMALL_STATE(2371)] = 156444, + [SMALL_STATE(2372)] = 156475, + [SMALL_STATE(2373)] = 156506, + [SMALL_STATE(2374)] = 156537, + [SMALL_STATE(2375)] = 156568, + [SMALL_STATE(2376)] = 156599, + [SMALL_STATE(2377)] = 156630, + [SMALL_STATE(2378)] = 156661, + [SMALL_STATE(2379)] = 156692, + [SMALL_STATE(2380)] = 156717, + [SMALL_STATE(2381)] = 156748, + [SMALL_STATE(2382)] = 156779, + [SMALL_STATE(2383)] = 156810, + [SMALL_STATE(2384)] = 156841, + [SMALL_STATE(2385)] = 156872, + [SMALL_STATE(2386)] = 156903, + [SMALL_STATE(2387)] = 156934, + [SMALL_STATE(2388)] = 156965, + [SMALL_STATE(2389)] = 156990, + [SMALL_STATE(2390)] = 157021, + [SMALL_STATE(2391)] = 157052, + [SMALL_STATE(2392)] = 157077, + [SMALL_STATE(2393)] = 157108, + [SMALL_STATE(2394)] = 157139, + [SMALL_STATE(2395)] = 157170, + [SMALL_STATE(2396)] = 157195, + [SMALL_STATE(2397)] = 157226, + [SMALL_STATE(2398)] = 157257, + [SMALL_STATE(2399)] = 157288, + [SMALL_STATE(2400)] = 157319, + [SMALL_STATE(2401)] = 157350, + [SMALL_STATE(2402)] = 157381, + [SMALL_STATE(2403)] = 157412, + [SMALL_STATE(2404)] = 157443, + [SMALL_STATE(2405)] = 157474, + [SMALL_STATE(2406)] = 157505, + [SMALL_STATE(2407)] = 157536, + [SMALL_STATE(2408)] = 157567, + [SMALL_STATE(2409)] = 157598, + [SMALL_STATE(2410)] = 157629, + [SMALL_STATE(2411)] = 157660, + [SMALL_STATE(2412)] = 157691, + [SMALL_STATE(2413)] = 157722, + [SMALL_STATE(2414)] = 157753, + [SMALL_STATE(2415)] = 157778, + [SMALL_STATE(2416)] = 157809, + [SMALL_STATE(2417)] = 157840, + [SMALL_STATE(2418)] = 157865, + [SMALL_STATE(2419)] = 157896, + [SMALL_STATE(2420)] = 157927, + [SMALL_STATE(2421)] = 157958, + [SMALL_STATE(2422)] = 157983, + [SMALL_STATE(2423)] = 158014, + [SMALL_STATE(2424)] = 158045, + [SMALL_STATE(2425)] = 158070, + [SMALL_STATE(2426)] = 158101, + [SMALL_STATE(2427)] = 158126, + [SMALL_STATE(2428)] = 158157, + [SMALL_STATE(2429)] = 158188, + [SMALL_STATE(2430)] = 158213, + [SMALL_STATE(2431)] = 158244, + [SMALL_STATE(2432)] = 158275, + [SMALL_STATE(2433)] = 158306, + [SMALL_STATE(2434)] = 158337, + [SMALL_STATE(2435)] = 158368, + [SMALL_STATE(2436)] = 158393, + [SMALL_STATE(2437)] = 158424, + [SMALL_STATE(2438)] = 158449, + [SMALL_STATE(2439)] = 158480, + [SMALL_STATE(2440)] = 158505, + [SMALL_STATE(2441)] = 158530, + [SMALL_STATE(2442)] = 158561, + [SMALL_STATE(2443)] = 158592, + [SMALL_STATE(2444)] = 158617, + [SMALL_STATE(2445)] = 158648, + [SMALL_STATE(2446)] = 158673, + [SMALL_STATE(2447)] = 158704, + [SMALL_STATE(2448)] = 158735, + [SMALL_STATE(2449)] = 158766, + [SMALL_STATE(2450)] = 158797, + [SMALL_STATE(2451)] = 158828, + [SMALL_STATE(2452)] = 158859, + [SMALL_STATE(2453)] = 158890, + [SMALL_STATE(2454)] = 158915, + [SMALL_STATE(2455)] = 158946, + [SMALL_STATE(2456)] = 158977, + [SMALL_STATE(2457)] = 159008, + [SMALL_STATE(2458)] = 159033, + [SMALL_STATE(2459)] = 159064, + [SMALL_STATE(2460)] = 159095, + [SMALL_STATE(2461)] = 159126, + [SMALL_STATE(2462)] = 159157, + [SMALL_STATE(2463)] = 159188, + [SMALL_STATE(2464)] = 159219, + [SMALL_STATE(2465)] = 159250, + [SMALL_STATE(2466)] = 159281, + [SMALL_STATE(2467)] = 159306, + [SMALL_STATE(2468)] = 159331, + [SMALL_STATE(2469)] = 159362, + [SMALL_STATE(2470)] = 159393, + [SMALL_STATE(2471)] = 159424, + [SMALL_STATE(2472)] = 159455, + [SMALL_STATE(2473)] = 159486, + [SMALL_STATE(2474)] = 159517, + [SMALL_STATE(2475)] = 159548, + [SMALL_STATE(2476)] = 159579, + [SMALL_STATE(2477)] = 159610, + [SMALL_STATE(2478)] = 159638, + [SMALL_STATE(2479)] = 159664, + [SMALL_STATE(2480)] = 159692, + [SMALL_STATE(2481)] = 159720, + [SMALL_STATE(2482)] = 159748, + [SMALL_STATE(2483)] = 159776, + [SMALL_STATE(2484)] = 159804, + [SMALL_STATE(2485)] = 159832, + [SMALL_STATE(2486)] = 159860, + [SMALL_STATE(2487)] = 159888, + [SMALL_STATE(2488)] = 159908, + [SMALL_STATE(2489)] = 159936, + [SMALL_STATE(2490)] = 159956, + [SMALL_STATE(2491)] = 159976, + [SMALL_STATE(2492)] = 160004, + [SMALL_STATE(2493)] = 160024, + [SMALL_STATE(2494)] = 160052, + [SMALL_STATE(2495)] = 160080, + [SMALL_STATE(2496)] = 160108, + [SMALL_STATE(2497)] = 160134, + [SMALL_STATE(2498)] = 160162, + [SMALL_STATE(2499)] = 160190, + [SMALL_STATE(2500)] = 160218, + [SMALL_STATE(2501)] = 160246, + [SMALL_STATE(2502)] = 160266, + [SMALL_STATE(2503)] = 160294, + [SMALL_STATE(2504)] = 160322, + [SMALL_STATE(2505)] = 160350, + [SMALL_STATE(2506)] = 160378, + [SMALL_STATE(2507)] = 160406, + [SMALL_STATE(2508)] = 160429, + [SMALL_STATE(2509)] = 160452, + [SMALL_STATE(2510)] = 160475, + [SMALL_STATE(2511)] = 160498, + [SMALL_STATE(2512)] = 160521, + [SMALL_STATE(2513)] = 160544, + [SMALL_STATE(2514)] = 160567, + [SMALL_STATE(2515)] = 160590, + [SMALL_STATE(2516)] = 160611, + [SMALL_STATE(2517)] = 160632, + [SMALL_STATE(2518)] = 160655, + [SMALL_STATE(2519)] = 160678, + [SMALL_STATE(2520)] = 160701, + [SMALL_STATE(2521)] = 160724, + [SMALL_STATE(2522)] = 160747, + [SMALL_STATE(2523)] = 160770, + [SMALL_STATE(2524)] = 160793, + [SMALL_STATE(2525)] = 160816, + [SMALL_STATE(2526)] = 160839, + [SMALL_STATE(2527)] = 160862, + [SMALL_STATE(2528)] = 160885, + [SMALL_STATE(2529)] = 160899, + [SMALL_STATE(2530)] = 160919, + [SMALL_STATE(2531)] = 160939, + [SMALL_STATE(2532)] = 160957, + [SMALL_STATE(2533)] = 160975, + [SMALL_STATE(2534)] = 161001, + [SMALL_STATE(2535)] = 161019, + [SMALL_STATE(2536)] = 161038, + [SMALL_STATE(2537)] = 161055, + [SMALL_STATE(2538)] = 161078, + [SMALL_STATE(2539)] = 161095, + [SMALL_STATE(2540)] = 161118, + [SMALL_STATE(2541)] = 161133, + [SMALL_STATE(2542)] = 161156, + [SMALL_STATE(2543)] = 161175, + [SMALL_STATE(2544)] = 161198, + [SMALL_STATE(2545)] = 161213, + [SMALL_STATE(2546)] = 161230, + [SMALL_STATE(2547)] = 161247, + [SMALL_STATE(2548)] = 161262, + [SMALL_STATE(2549)] = 161281, + [SMALL_STATE(2550)] = 161300, + [SMALL_STATE(2551)] = 161317, + [SMALL_STATE(2552)] = 161334, + [SMALL_STATE(2553)] = 161353, + [SMALL_STATE(2554)] = 161376, + [SMALL_STATE(2555)] = 161395, + [SMALL_STATE(2556)] = 161414, + [SMALL_STATE(2557)] = 161433, + [SMALL_STATE(2558)] = 161452, + [SMALL_STATE(2559)] = 161467, + [SMALL_STATE(2560)] = 161486, + [SMALL_STATE(2561)] = 161509, + [SMALL_STATE(2562)] = 161528, + [SMALL_STATE(2563)] = 161545, + [SMALL_STATE(2564)] = 161564, + [SMALL_STATE(2565)] = 161583, + [SMALL_STATE(2566)] = 161602, + [SMALL_STATE(2567)] = 161621, + [SMALL_STATE(2568)] = 161640, + [SMALL_STATE(2569)] = 161657, + [SMALL_STATE(2570)] = 161672, + [SMALL_STATE(2571)] = 161691, + [SMALL_STATE(2572)] = 161708, + [SMALL_STATE(2573)] = 161727, + [SMALL_STATE(2574)] = 161750, + [SMALL_STATE(2575)] = 161765, + [SMALL_STATE(2576)] = 161782, + [SMALL_STATE(2577)] = 161797, + [SMALL_STATE(2578)] = 161814, + [SMALL_STATE(2579)] = 161831, + [SMALL_STATE(2580)] = 161850, + [SMALL_STATE(2581)] = 161865, + [SMALL_STATE(2582)] = 161884, + [SMALL_STATE(2583)] = 161899, + [SMALL_STATE(2584)] = 161922, + [SMALL_STATE(2585)] = 161941, + [SMALL_STATE(2586)] = 161964, + [SMALL_STATE(2587)] = 161981, + [SMALL_STATE(2588)] = 161995, + [SMALL_STATE(2589)] = 162015, + [SMALL_STATE(2590)] = 162035, + [SMALL_STATE(2591)] = 162055, + [SMALL_STATE(2592)] = 162069, + [SMALL_STATE(2593)] = 162089, + [SMALL_STATE(2594)] = 162109, + [SMALL_STATE(2595)] = 162125, + [SMALL_STATE(2596)] = 162139, + [SMALL_STATE(2597)] = 162159, + [SMALL_STATE(2598)] = 162175, + [SMALL_STATE(2599)] = 162195, + [SMALL_STATE(2600)] = 162209, + [SMALL_STATE(2601)] = 162229, + [SMALL_STATE(2602)] = 162245, + [SMALL_STATE(2603)] = 162265, + [SMALL_STATE(2604)] = 162281, + [SMALL_STATE(2605)] = 162295, + [SMALL_STATE(2606)] = 162309, + [SMALL_STATE(2607)] = 162329, + [SMALL_STATE(2608)] = 162349, + [SMALL_STATE(2609)] = 162369, + [SMALL_STATE(2610)] = 162385, + [SMALL_STATE(2611)] = 162401, + [SMALL_STATE(2612)] = 162421, + [SMALL_STATE(2613)] = 162435, + [SMALL_STATE(2614)] = 162449, + [SMALL_STATE(2615)] = 162465, + [SMALL_STATE(2616)] = 162481, + [SMALL_STATE(2617)] = 162501, + [SMALL_STATE(2618)] = 162521, + [SMALL_STATE(2619)] = 162534, + [SMALL_STATE(2620)] = 162547, + [SMALL_STATE(2621)] = 162564, + [SMALL_STATE(2622)] = 162575, + [SMALL_STATE(2623)] = 162592, + [SMALL_STATE(2624)] = 162609, + [SMALL_STATE(2625)] = 162624, + [SMALL_STATE(2626)] = 162641, + [SMALL_STATE(2627)] = 162658, + [SMALL_STATE(2628)] = 162675, + [SMALL_STATE(2629)] = 162692, + [SMALL_STATE(2630)] = 162709, + [SMALL_STATE(2631)] = 162726, + [SMALL_STATE(2632)] = 162743, + [SMALL_STATE(2633)] = 162760, + [SMALL_STATE(2634)] = 162777, + [SMALL_STATE(2635)] = 162794, + [SMALL_STATE(2636)] = 162807, + [SMALL_STATE(2637)] = 162822, + [SMALL_STATE(2638)] = 162833, + [SMALL_STATE(2639)] = 162848, + [SMALL_STATE(2640)] = 162861, + [SMALL_STATE(2641)] = 162874, + [SMALL_STATE(2642)] = 162887, + [SMALL_STATE(2643)] = 162904, + [SMALL_STATE(2644)] = 162919, + [SMALL_STATE(2645)] = 162932, + [SMALL_STATE(2646)] = 162949, + [SMALL_STATE(2647)] = 162964, + [SMALL_STATE(2648)] = 162979, + [SMALL_STATE(2649)] = 162992, + [SMALL_STATE(2650)] = 163009, + [SMALL_STATE(2651)] = 163022, + [SMALL_STATE(2652)] = 163035, + [SMALL_STATE(2653)] = 163052, + [SMALL_STATE(2654)] = 163065, + [SMALL_STATE(2655)] = 163080, + [SMALL_STATE(2656)] = 163097, + [SMALL_STATE(2657)] = 163110, + [SMALL_STATE(2658)] = 163123, + [SMALL_STATE(2659)] = 163140, + [SMALL_STATE(2660)] = 163153, + [SMALL_STATE(2661)] = 163170, + [SMALL_STATE(2662)] = 163187, + [SMALL_STATE(2663)] = 163200, + [SMALL_STATE(2664)] = 163213, + [SMALL_STATE(2665)] = 163230, + [SMALL_STATE(2666)] = 163244, + [SMALL_STATE(2667)] = 163256, + [SMALL_STATE(2668)] = 163270, + [SMALL_STATE(2669)] = 163284, + [SMALL_STATE(2670)] = 163298, + [SMALL_STATE(2671)] = 163312, + [SMALL_STATE(2672)] = 163326, + [SMALL_STATE(2673)] = 163340, + [SMALL_STATE(2674)] = 163352, + [SMALL_STATE(2675)] = 163366, + [SMALL_STATE(2676)] = 163380, + [SMALL_STATE(2677)] = 163394, + [SMALL_STATE(2678)] = 163408, + [SMALL_STATE(2679)] = 163420, + [SMALL_STATE(2680)] = 163434, + [SMALL_STATE(2681)] = 163448, + [SMALL_STATE(2682)] = 163462, + [SMALL_STATE(2683)] = 163476, + [SMALL_STATE(2684)] = 163490, + [SMALL_STATE(2685)] = 163504, + [SMALL_STATE(2686)] = 163516, + [SMALL_STATE(2687)] = 163530, + [SMALL_STATE(2688)] = 163544, + [SMALL_STATE(2689)] = 163558, + [SMALL_STATE(2690)] = 163572, + [SMALL_STATE(2691)] = 163586, + [SMALL_STATE(2692)] = 163600, + [SMALL_STATE(2693)] = 163614, + [SMALL_STATE(2694)] = 163626, + [SMALL_STATE(2695)] = 163638, + [SMALL_STATE(2696)] = 163652, + [SMALL_STATE(2697)] = 163666, + [SMALL_STATE(2698)] = 163680, + [SMALL_STATE(2699)] = 163694, + [SMALL_STATE(2700)] = 163708, + [SMALL_STATE(2701)] = 163722, + [SMALL_STATE(2702)] = 163736, + [SMALL_STATE(2703)] = 163750, + [SMALL_STATE(2704)] = 163760, + [SMALL_STATE(2705)] = 163774, + [SMALL_STATE(2706)] = 163788, + [SMALL_STATE(2707)] = 163802, + [SMALL_STATE(2708)] = 163816, + [SMALL_STATE(2709)] = 163830, + [SMALL_STATE(2710)] = 163844, + [SMALL_STATE(2711)] = 163858, + [SMALL_STATE(2712)] = 163872, + [SMALL_STATE(2713)] = 163886, + [SMALL_STATE(2714)] = 163900, + [SMALL_STATE(2715)] = 163914, + [SMALL_STATE(2716)] = 163928, + [SMALL_STATE(2717)] = 163942, + [SMALL_STATE(2718)] = 163956, + [SMALL_STATE(2719)] = 163970, + [SMALL_STATE(2720)] = 163984, + [SMALL_STATE(2721)] = 163998, + [SMALL_STATE(2722)] = 164012, + [SMALL_STATE(2723)] = 164026, + [SMALL_STATE(2724)] = 164040, + [SMALL_STATE(2725)] = 164054, + [SMALL_STATE(2726)] = 164068, + [SMALL_STATE(2727)] = 164082, + [SMALL_STATE(2728)] = 164096, + [SMALL_STATE(2729)] = 164108, + [SMALL_STATE(2730)] = 164120, + [SMALL_STATE(2731)] = 164134, + [SMALL_STATE(2732)] = 164148, + [SMALL_STATE(2733)] = 164162, + [SMALL_STATE(2734)] = 164176, + [SMALL_STATE(2735)] = 164188, + [SMALL_STATE(2736)] = 164198, + [SMALL_STATE(2737)] = 164212, + [SMALL_STATE(2738)] = 164226, + [SMALL_STATE(2739)] = 164240, + [SMALL_STATE(2740)] = 164254, + [SMALL_STATE(2741)] = 164268, + [SMALL_STATE(2742)] = 164282, + [SMALL_STATE(2743)] = 164292, + [SMALL_STATE(2744)] = 164306, + [SMALL_STATE(2745)] = 164320, + [SMALL_STATE(2746)] = 164334, + [SMALL_STATE(2747)] = 164348, + [SMALL_STATE(2748)] = 164362, + [SMALL_STATE(2749)] = 164376, + [SMALL_STATE(2750)] = 164390, + [SMALL_STATE(2751)] = 164404, + [SMALL_STATE(2752)] = 164418, + [SMALL_STATE(2753)] = 164432, + [SMALL_STATE(2754)] = 164446, + [SMALL_STATE(2755)] = 164460, + [SMALL_STATE(2756)] = 164474, + [SMALL_STATE(2757)] = 164488, + [SMALL_STATE(2758)] = 164502, + [SMALL_STATE(2759)] = 164516, + [SMALL_STATE(2760)] = 164530, + [SMALL_STATE(2761)] = 164542, + [SMALL_STATE(2762)] = 164556, + [SMALL_STATE(2763)] = 164570, + [SMALL_STATE(2764)] = 164584, + [SMALL_STATE(2765)] = 164598, + [SMALL_STATE(2766)] = 164612, + [SMALL_STATE(2767)] = 164626, + [SMALL_STATE(2768)] = 164638, + [SMALL_STATE(2769)] = 164652, + [SMALL_STATE(2770)] = 164666, + [SMALL_STATE(2771)] = 164680, + [SMALL_STATE(2772)] = 164694, + [SMALL_STATE(2773)] = 164708, + [SMALL_STATE(2774)] = 164722, + [SMALL_STATE(2775)] = 164736, + [SMALL_STATE(2776)] = 164750, + [SMALL_STATE(2777)] = 164764, + [SMALL_STATE(2778)] = 164778, + [SMALL_STATE(2779)] = 164792, + [SMALL_STATE(2780)] = 164806, + [SMALL_STATE(2781)] = 164820, + [SMALL_STATE(2782)] = 164832, + [SMALL_STATE(2783)] = 164846, + [SMALL_STATE(2784)] = 164860, + [SMALL_STATE(2785)] = 164874, + [SMALL_STATE(2786)] = 164888, + [SMALL_STATE(2787)] = 164902, + [SMALL_STATE(2788)] = 164916, + [SMALL_STATE(2789)] = 164930, + [SMALL_STATE(2790)] = 164940, + [SMALL_STATE(2791)] = 164954, + [SMALL_STATE(2792)] = 164968, + [SMALL_STATE(2793)] = 164982, + [SMALL_STATE(2794)] = 164994, + [SMALL_STATE(2795)] = 165008, + [SMALL_STATE(2796)] = 165022, + [SMALL_STATE(2797)] = 165036, + [SMALL_STATE(2798)] = 165050, + [SMALL_STATE(2799)] = 165060, + [SMALL_STATE(2800)] = 165074, + [SMALL_STATE(2801)] = 165088, + [SMALL_STATE(2802)] = 165102, + [SMALL_STATE(2803)] = 165116, + [SMALL_STATE(2804)] = 165130, + [SMALL_STATE(2805)] = 165144, + [SMALL_STATE(2806)] = 165158, + [SMALL_STATE(2807)] = 165172, + [SMALL_STATE(2808)] = 165186, + [SMALL_STATE(2809)] = 165200, + [SMALL_STATE(2810)] = 165214, + [SMALL_STATE(2811)] = 165228, + [SMALL_STATE(2812)] = 165242, + [SMALL_STATE(2813)] = 165256, + [SMALL_STATE(2814)] = 165270, + [SMALL_STATE(2815)] = 165282, + [SMALL_STATE(2816)] = 165296, + [SMALL_STATE(2817)] = 165308, + [SMALL_STATE(2818)] = 165322, + [SMALL_STATE(2819)] = 165334, + [SMALL_STATE(2820)] = 165346, + [SMALL_STATE(2821)] = 165358, + [SMALL_STATE(2822)] = 165372, + [SMALL_STATE(2823)] = 165386, + [SMALL_STATE(2824)] = 165398, + [SMALL_STATE(2825)] = 165412, + [SMALL_STATE(2826)] = 165424, + [SMALL_STATE(2827)] = 165438, + [SMALL_STATE(2828)] = 165450, + [SMALL_STATE(2829)] = 165464, + [SMALL_STATE(2830)] = 165478, + [SMALL_STATE(2831)] = 165492, + [SMALL_STATE(2832)] = 165506, + [SMALL_STATE(2833)] = 165520, + [SMALL_STATE(2834)] = 165531, + [SMALL_STATE(2835)] = 165542, + [SMALL_STATE(2836)] = 165553, + [SMALL_STATE(2837)] = 165564, + [SMALL_STATE(2838)] = 165573, + [SMALL_STATE(2839)] = 165584, + [SMALL_STATE(2840)] = 165595, + [SMALL_STATE(2841)] = 165606, + [SMALL_STATE(2842)] = 165617, + [SMALL_STATE(2843)] = 165628, + [SMALL_STATE(2844)] = 165639, + [SMALL_STATE(2845)] = 165650, + [SMALL_STATE(2846)] = 165661, + [SMALL_STATE(2847)] = 165672, + [SMALL_STATE(2848)] = 165683, + [SMALL_STATE(2849)] = 165694, + [SMALL_STATE(2850)] = 165705, + [SMALL_STATE(2851)] = 165716, + [SMALL_STATE(2852)] = 165727, + [SMALL_STATE(2853)] = 165738, + [SMALL_STATE(2854)] = 165749, + [SMALL_STATE(2855)] = 165760, + [SMALL_STATE(2856)] = 165771, + [SMALL_STATE(2857)] = 165782, + [SMALL_STATE(2858)] = 165793, + [SMALL_STATE(2859)] = 165804, + [SMALL_STATE(2860)] = 165813, + [SMALL_STATE(2861)] = 165824, + [SMALL_STATE(2862)] = 165835, + [SMALL_STATE(2863)] = 165844, + [SMALL_STATE(2864)] = 165855, + [SMALL_STATE(2865)] = 165866, + [SMALL_STATE(2866)] = 165877, + [SMALL_STATE(2867)] = 165888, + [SMALL_STATE(2868)] = 165899, + [SMALL_STATE(2869)] = 165910, + [SMALL_STATE(2870)] = 165921, + [SMALL_STATE(2871)] = 165932, + [SMALL_STATE(2872)] = 165943, + [SMALL_STATE(2873)] = 165954, + [SMALL_STATE(2874)] = 165965, + [SMALL_STATE(2875)] = 165974, + [SMALL_STATE(2876)] = 165985, + [SMALL_STATE(2877)] = 165996, + [SMALL_STATE(2878)] = 166007, + [SMALL_STATE(2879)] = 166018, + [SMALL_STATE(2880)] = 166029, + [SMALL_STATE(2881)] = 166040, + [SMALL_STATE(2882)] = 166051, + [SMALL_STATE(2883)] = 166062, + [SMALL_STATE(2884)] = 166073, + [SMALL_STATE(2885)] = 166084, + [SMALL_STATE(2886)] = 166095, + [SMALL_STATE(2887)] = 166106, + [SMALL_STATE(2888)] = 166117, + [SMALL_STATE(2889)] = 166128, + [SMALL_STATE(2890)] = 166139, + [SMALL_STATE(2891)] = 166150, + [SMALL_STATE(2892)] = 166161, + [SMALL_STATE(2893)] = 166172, + [SMALL_STATE(2894)] = 166183, + [SMALL_STATE(2895)] = 166194, + [SMALL_STATE(2896)] = 166205, + [SMALL_STATE(2897)] = 166216, + [SMALL_STATE(2898)] = 166227, + [SMALL_STATE(2899)] = 166236, + [SMALL_STATE(2900)] = 166244, + [SMALL_STATE(2901)] = 166252, + [SMALL_STATE(2902)] = 166260, + [SMALL_STATE(2903)] = 166268, + [SMALL_STATE(2904)] = 166276, + [SMALL_STATE(2905)] = 166284, + [SMALL_STATE(2906)] = 166292, + [SMALL_STATE(2907)] = 166300, + [SMALL_STATE(2908)] = 166308, + [SMALL_STATE(2909)] = 166316, + [SMALL_STATE(2910)] = 166324, + [SMALL_STATE(2911)] = 166332, + [SMALL_STATE(2912)] = 166340, + [SMALL_STATE(2913)] = 166348, + [SMALL_STATE(2914)] = 166356, + [SMALL_STATE(2915)] = 166364, + [SMALL_STATE(2916)] = 166372, + [SMALL_STATE(2917)] = 166380, + [SMALL_STATE(2918)] = 166388, + [SMALL_STATE(2919)] = 166396, + [SMALL_STATE(2920)] = 166404, + [SMALL_STATE(2921)] = 166412, + [SMALL_STATE(2922)] = 166420, + [SMALL_STATE(2923)] = 166428, + [SMALL_STATE(2924)] = 166436, + [SMALL_STATE(2925)] = 166444, + [SMALL_STATE(2926)] = 166452, + [SMALL_STATE(2927)] = 166460, + [SMALL_STATE(2928)] = 166468, + [SMALL_STATE(2929)] = 166476, + [SMALL_STATE(2930)] = 166484, + [SMALL_STATE(2931)] = 166492, + [SMALL_STATE(2932)] = 166500, + [SMALL_STATE(2933)] = 166508, + [SMALL_STATE(2934)] = 166516, + [SMALL_STATE(2935)] = 166524, + [SMALL_STATE(2936)] = 166532, + [SMALL_STATE(2937)] = 166540, + [SMALL_STATE(2938)] = 166548, + [SMALL_STATE(2939)] = 166556, + [SMALL_STATE(2940)] = 166564, + [SMALL_STATE(2941)] = 166572, + [SMALL_STATE(2942)] = 166580, + [SMALL_STATE(2943)] = 166588, + [SMALL_STATE(2944)] = 166596, + [SMALL_STATE(2945)] = 166604, + [SMALL_STATE(2946)] = 166612, + [SMALL_STATE(2947)] = 166620, + [SMALL_STATE(2948)] = 166628, + [SMALL_STATE(2949)] = 166636, + [SMALL_STATE(2950)] = 166644, + [SMALL_STATE(2951)] = 166652, + [SMALL_STATE(2952)] = 166660, + [SMALL_STATE(2953)] = 166668, + [SMALL_STATE(2954)] = 166676, + [SMALL_STATE(2955)] = 166684, + [SMALL_STATE(2956)] = 166692, + [SMALL_STATE(2957)] = 166700, + [SMALL_STATE(2958)] = 166708, + [SMALL_STATE(2959)] = 166716, + [SMALL_STATE(2960)] = 166724, + [SMALL_STATE(2961)] = 166732, + [SMALL_STATE(2962)] = 166740, + [SMALL_STATE(2963)] = 166748, + [SMALL_STATE(2964)] = 166756, + [SMALL_STATE(2965)] = 166764, + [SMALL_STATE(2966)] = 166772, + [SMALL_STATE(2967)] = 166780, + [SMALL_STATE(2968)] = 166788, + [SMALL_STATE(2969)] = 166796, + [SMALL_STATE(2970)] = 166804, + [SMALL_STATE(2971)] = 166812, + [SMALL_STATE(2972)] = 166820, + [SMALL_STATE(2973)] = 166828, + [SMALL_STATE(2974)] = 166836, + [SMALL_STATE(2975)] = 166844, + [SMALL_STATE(2976)] = 166852, + [SMALL_STATE(2977)] = 166860, + [SMALL_STATE(2978)] = 166868, + [SMALL_STATE(2979)] = 166876, + [SMALL_STATE(2980)] = 166884, + [SMALL_STATE(2981)] = 166892, + [SMALL_STATE(2982)] = 166900, + [SMALL_STATE(2983)] = 166908, + [SMALL_STATE(2984)] = 166916, + [SMALL_STATE(2985)] = 166924, + [SMALL_STATE(2986)] = 166932, + [SMALL_STATE(2987)] = 166940, + [SMALL_STATE(2988)] = 166948, + [SMALL_STATE(2989)] = 166956, + [SMALL_STATE(2990)] = 166964, + [SMALL_STATE(2991)] = 166972, + [SMALL_STATE(2992)] = 166980, + [SMALL_STATE(2993)] = 166988, + [SMALL_STATE(2994)] = 166996, + [SMALL_STATE(2995)] = 167004, + [SMALL_STATE(2996)] = 167012, + [SMALL_STATE(2997)] = 167020, + [SMALL_STATE(2998)] = 167028, + [SMALL_STATE(2999)] = 167036, + [SMALL_STATE(3000)] = 167044, + [SMALL_STATE(3001)] = 167052, + [SMALL_STATE(3002)] = 167060, + [SMALL_STATE(3003)] = 167068, + [SMALL_STATE(3004)] = 167076, + [SMALL_STATE(3005)] = 167084, + [SMALL_STATE(3006)] = 167092, + [SMALL_STATE(3007)] = 167100, + [SMALL_STATE(3008)] = 167108, + [SMALL_STATE(3009)] = 167116, + [SMALL_STATE(3010)] = 167124, + [SMALL_STATE(3011)] = 167132, + [SMALL_STATE(3012)] = 167140, + [SMALL_STATE(3013)] = 167148, + [SMALL_STATE(3014)] = 167156, + [SMALL_STATE(3015)] = 167164, + [SMALL_STATE(3016)] = 167172, + [SMALL_STATE(3017)] = 167180, + [SMALL_STATE(3018)] = 167188, + [SMALL_STATE(3019)] = 167196, + [SMALL_STATE(3020)] = 167204, + [SMALL_STATE(3021)] = 167212, + [SMALL_STATE(3022)] = 167220, + [SMALL_STATE(3023)] = 167228, + [SMALL_STATE(3024)] = 167236, + [SMALL_STATE(3025)] = 167244, + [SMALL_STATE(3026)] = 167252, + [SMALL_STATE(3027)] = 167260, + [SMALL_STATE(3028)] = 167268, + [SMALL_STATE(3029)] = 167276, + [SMALL_STATE(3030)] = 167284, + [SMALL_STATE(3031)] = 167292, + [SMALL_STATE(3032)] = 167300, + [SMALL_STATE(3033)] = 167308, + [SMALL_STATE(3034)] = 167316, + [SMALL_STATE(3035)] = 167324, + [SMALL_STATE(3036)] = 167332, + [SMALL_STATE(3037)] = 167340, + [SMALL_STATE(3038)] = 167348, + [SMALL_STATE(3039)] = 167356, + [SMALL_STATE(3040)] = 167364, + [SMALL_STATE(3041)] = 167372, + [SMALL_STATE(3042)] = 167380, + [SMALL_STATE(3043)] = 167388, + [SMALL_STATE(3044)] = 167396, + [SMALL_STATE(3045)] = 167404, + [SMALL_STATE(3046)] = 167412, + [SMALL_STATE(3047)] = 167420, + [SMALL_STATE(3048)] = 167428, + [SMALL_STATE(3049)] = 167436, + [SMALL_STATE(3050)] = 167444, + [SMALL_STATE(3051)] = 167452, + [SMALL_STATE(3052)] = 167460, + [SMALL_STATE(3053)] = 167468, + [SMALL_STATE(3054)] = 167476, + [SMALL_STATE(3055)] = 167484, + [SMALL_STATE(3056)] = 167492, + [SMALL_STATE(3057)] = 167500, + [SMALL_STATE(3058)] = 167508, + [SMALL_STATE(3059)] = 167516, + [SMALL_STATE(3060)] = 167524, + [SMALL_STATE(3061)] = 167532, + [SMALL_STATE(3062)] = 167540, + [SMALL_STATE(3063)] = 167548, + [SMALL_STATE(3064)] = 167556, + [SMALL_STATE(3065)] = 167564, + [SMALL_STATE(3066)] = 167572, + [SMALL_STATE(3067)] = 167580, + [SMALL_STATE(3068)] = 167588, + [SMALL_STATE(3069)] = 167596, + [SMALL_STATE(3070)] = 167604, + [SMALL_STATE(3071)] = 167612, + [SMALL_STATE(3072)] = 167620, + [SMALL_STATE(3073)] = 167628, + [SMALL_STATE(3074)] = 167636, + [SMALL_STATE(3075)] = 167644, + [SMALL_STATE(3076)] = 167652, + [SMALL_STATE(3077)] = 167660, + [SMALL_STATE(3078)] = 167668, + [SMALL_STATE(3079)] = 167676, + [SMALL_STATE(3080)] = 167684, + [SMALL_STATE(3081)] = 167692, + [SMALL_STATE(3082)] = 167700, + [SMALL_STATE(3083)] = 167708, + [SMALL_STATE(3084)] = 167716, + [SMALL_STATE(3085)] = 167724, + [SMALL_STATE(3086)] = 167732, + [SMALL_STATE(3087)] = 167740, + [SMALL_STATE(3088)] = 167748, + [SMALL_STATE(3089)] = 167756, + [SMALL_STATE(3090)] = 167764, + [SMALL_STATE(3091)] = 167772, + [SMALL_STATE(3092)] = 167780, + [SMALL_STATE(3093)] = 167788, + [SMALL_STATE(3094)] = 167796, + [SMALL_STATE(3095)] = 167804, + [SMALL_STATE(3096)] = 167812, + [SMALL_STATE(3097)] = 167820, + [SMALL_STATE(3098)] = 167828, + [SMALL_STATE(3099)] = 167836, + [SMALL_STATE(3100)] = 167844, + [SMALL_STATE(3101)] = 167852, + [SMALL_STATE(3102)] = 167860, + [SMALL_STATE(3103)] = 167868, + [SMALL_STATE(3104)] = 167876, + [SMALL_STATE(3105)] = 167884, + [SMALL_STATE(3106)] = 167892, + [SMALL_STATE(3107)] = 167900, + [SMALL_STATE(3108)] = 167908, + [SMALL_STATE(3109)] = 167916, + [SMALL_STATE(3110)] = 167924, + [SMALL_STATE(3111)] = 167932, + [SMALL_STATE(3112)] = 167940, + [SMALL_STATE(3113)] = 167948, + [SMALL_STATE(3114)] = 167956, + [SMALL_STATE(3115)] = 167964, + [SMALL_STATE(3116)] = 167972, + [SMALL_STATE(3117)] = 167980, + [SMALL_STATE(3118)] = 167988, + [SMALL_STATE(3119)] = 167996, + [SMALL_STATE(3120)] = 168004, + [SMALL_STATE(3121)] = 168012, + [SMALL_STATE(3122)] = 168020, + [SMALL_STATE(3123)] = 168028, + [SMALL_STATE(3124)] = 168036, + [SMALL_STATE(3125)] = 168044, + [SMALL_STATE(3126)] = 168052, + [SMALL_STATE(3127)] = 168060, + [SMALL_STATE(3128)] = 168068, + [SMALL_STATE(3129)] = 168076, + [SMALL_STATE(3130)] = 168084, + [SMALL_STATE(3131)] = 168092, + [SMALL_STATE(3132)] = 168100, + [SMALL_STATE(3133)] = 168108, + [SMALL_STATE(3134)] = 168116, + [SMALL_STATE(3135)] = 168124, + [SMALL_STATE(3136)] = 168132, + [SMALL_STATE(3137)] = 168140, + [SMALL_STATE(3138)] = 168148, + [SMALL_STATE(3139)] = 168156, + [SMALL_STATE(3140)] = 168164, + [SMALL_STATE(3141)] = 168172, + [SMALL_STATE(3142)] = 168180, + [SMALL_STATE(3143)] = 168188, + [SMALL_STATE(3144)] = 168196, + [SMALL_STATE(3145)] = 168204, + [SMALL_STATE(3146)] = 168212, + [SMALL_STATE(3147)] = 168220, + [SMALL_STATE(3148)] = 168228, + [SMALL_STATE(3149)] = 168236, + [SMALL_STATE(3150)] = 168244, + [SMALL_STATE(3151)] = 168252, + [SMALL_STATE(3152)] = 168260, + [SMALL_STATE(3153)] = 168268, + [SMALL_STATE(3154)] = 168276, + [SMALL_STATE(3155)] = 168284, + [SMALL_STATE(3156)] = 168292, + [SMALL_STATE(3157)] = 168300, + [SMALL_STATE(3158)] = 168308, + [SMALL_STATE(3159)] = 168316, + [SMALL_STATE(3160)] = 168324, + [SMALL_STATE(3161)] = 168332, + [SMALL_STATE(3162)] = 168340, + [SMALL_STATE(3163)] = 168348, + [SMALL_STATE(3164)] = 168356, + [SMALL_STATE(3165)] = 168364, + [SMALL_STATE(3166)] = 168372, + [SMALL_STATE(3167)] = 168380, + [SMALL_STATE(3168)] = 168388, + [SMALL_STATE(3169)] = 168396, + [SMALL_STATE(3170)] = 168404, + [SMALL_STATE(3171)] = 168412, + [SMALL_STATE(3172)] = 168420, + [SMALL_STATE(3173)] = 168428, + [SMALL_STATE(3174)] = 168436, + [SMALL_STATE(3175)] = 168444, + [SMALL_STATE(3176)] = 168452, + [SMALL_STATE(3177)] = 168460, + [SMALL_STATE(3178)] = 168468, + [SMALL_STATE(3179)] = 168476, + [SMALL_STATE(3180)] = 168484, + [SMALL_STATE(3181)] = 168492, + [SMALL_STATE(3182)] = 168500, + [SMALL_STATE(3183)] = 168508, + [SMALL_STATE(3184)] = 168516, + [SMALL_STATE(3185)] = 168524, + [SMALL_STATE(3186)] = 168532, + [SMALL_STATE(3187)] = 168540, + [SMALL_STATE(3188)] = 168548, + [SMALL_STATE(3189)] = 168556, + [SMALL_STATE(3190)] = 168564, + [SMALL_STATE(3191)] = 168572, + [SMALL_STATE(3192)] = 168580, + [SMALL_STATE(3193)] = 168588, + [SMALL_STATE(3194)] = 168596, + [SMALL_STATE(3195)] = 168604, + [SMALL_STATE(3196)] = 168612, + [SMALL_STATE(3197)] = 168620, + [SMALL_STATE(3198)] = 168628, + [SMALL_STATE(3199)] = 168636, + [SMALL_STATE(3200)] = 168644, + [SMALL_STATE(3201)] = 168652, + [SMALL_STATE(3202)] = 168660, + [SMALL_STATE(3203)] = 168668, + [SMALL_STATE(3204)] = 168675, + [SMALL_STATE(3205)] = 168682, + [SMALL_STATE(3206)] = 168689, + [SMALL_STATE(3207)] = 168696, + [SMALL_STATE(3208)] = 168703, + [SMALL_STATE(3209)] = 168710, + [SMALL_STATE(3210)] = 168717, + [SMALL_STATE(3211)] = 168724, + [SMALL_STATE(3212)] = 168731, + [SMALL_STATE(3213)] = 168738, + [SMALL_STATE(3214)] = 168745, + [SMALL_STATE(3215)] = 168752, + [SMALL_STATE(3216)] = 168759, + [SMALL_STATE(3217)] = 168766, + [SMALL_STATE(3218)] = 168773, + [SMALL_STATE(3219)] = 168780, + [SMALL_STATE(3220)] = 168787, + [SMALL_STATE(3221)] = 168794, + [SMALL_STATE(3222)] = 168801, + [SMALL_STATE(3223)] = 168808, + [SMALL_STATE(3224)] = 168815, + [SMALL_STATE(3225)] = 168822, + [SMALL_STATE(3226)] = 168829, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -165613,2456 +161797,2431 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1023), - [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2595), - [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3134), - [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(444), - [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(445), - [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(446), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(86), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2600), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(77), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3113), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2182), - [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2655), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3107), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3104), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3092), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3090), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(482), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3134), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(483), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(488), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3071), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1879), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1879), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2588), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(414), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(996), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2533), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3195), + [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(497), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(498), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(500), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(86), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2542), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(85), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3185), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2060), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2603), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3106), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3104), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3103), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3102), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(522), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3195), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(523), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(524), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3099), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1909), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1909), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2508), + [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(598), [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(87), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2675), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3251), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3154), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3155), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3055), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3, .production_id = 11), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3, .production_id = 11), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(146), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3194), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(452), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(119), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2629), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(76), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3113), - [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3194), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(850), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(860), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3122), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(999), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(999), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2577), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(152), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3186), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(489), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(131), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2637), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(84), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3186), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(906), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(907), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3080), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(914), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(914), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2579), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1171), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3225), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(847), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(117), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2609), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(78), - [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3113), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(515), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3225), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(523), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(522), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3050), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1289), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1289), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2575), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, .production_id = 1), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1495), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3225), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(847), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(117), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2609), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(78), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3113), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(675), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(911), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(451), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3050), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1289), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2575), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 5), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 5), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2143), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 6), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 6), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 4), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 4), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 42), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, .production_id = 42), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 2), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 2), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 4), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 4), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 13), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 13), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 30), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 30), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 17), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 17), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3175), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3175), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), - [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3194), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3194), - [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3186), - [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3186), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3202), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3202), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 12), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 12), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 31), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 31), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 3), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 3), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2151), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 17), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 17), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 3), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 3), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_operation, 4), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_operation, 4), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 1), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_coalesce, 3), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_coalesce, 3), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 2), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 18), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 18), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2609), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3186), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3065), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3066), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3112), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3, .production_id = 11), + [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3, .production_id = 11), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(117), + [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3158), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(681), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(142), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2556), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(84), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3185), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3158), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(477), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(463), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3033), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(521), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(521), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2524), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(143), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3027), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(800), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(137), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2548), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(80), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3027), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(441), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(442), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2991), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(767), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(767), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2509), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1146), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3184), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(480), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(125), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2567), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(81), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3185), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(870), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3184), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(875), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(874), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3111), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1238), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1238), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2510), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, .production_id = 1), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 5), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 5), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 12), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 12), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 17), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 17), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_coalesce, 3), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_coalesce, 3), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 2), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 2), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 4), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 4), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 17), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 17), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 2), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 1), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_operation, 4), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_operation, 4), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 3), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 3), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, .production_id = 42), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 42), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 31), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 31), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 30), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 30), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2136), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 18), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 18), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 6), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 6), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2131), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 4), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 4), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 13), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 13), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3167), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3167), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1582), + [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3184), + [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(480), + [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(125), + [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2567), + [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(81), + [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3185), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(515), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(821), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(449), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3111), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1238), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2510), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3158), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), + [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3158), + [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3037), + [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3037), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3027), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3027), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 5), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 5), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(918), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3180), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(918), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(919), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 3), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 3), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(728), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3038), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(728), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(727), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_type, 1), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_type, 1), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_basic_type, 1), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_basic_type, 1), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 4), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 4), [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(610), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3126), - [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(610), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(608), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 5), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 5), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 4), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 4), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 3), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 3), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_type, 1), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_type, 1), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_basic_type, 1), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_basic_type, 1), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(768), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3246), - [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(768), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(767), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_suffix, 2), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_suffix, 2), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 45), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 45), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_operation, 1), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_operation, 1), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 2, .production_id = 5), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 2, .production_id = 5), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 12, .production_id = 80), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 12, .production_id = 80), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 11, .production_id = 79), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 11, .production_id = 79), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 77), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 77), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 76), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 76), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 74), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 74), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 73), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 73), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 8, .production_id = 70), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 8, .production_id = 70), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 8, .production_id = 69), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 8, .production_id = 69), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 7, .production_id = 65), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 7, .production_id = 65), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 7, .production_id = 61), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 7, .production_id = 61), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 7), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 7), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 6, .production_id = 54), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 6, .production_id = 54), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 45), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 45), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 33), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 33), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 5, .production_id = 5), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 5, .production_id = 5), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 5, .production_id = 39), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 5, .production_id = 39), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_item, 4, .production_id = 34), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_item, 4, .production_id = 34), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 33), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 33), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 3), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 3), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braces_expression, 3), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braces_expression, 3), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 3), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 3), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 4, .production_id = 5), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 4, .production_id = 5), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_expr, 3), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_expr, 3), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 2), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 2), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 24), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 24), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 4), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 4), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 24), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 24), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_operation, 3), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_operation, 3), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute, 3, .production_id = 21), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute, 3, .production_id = 21), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3247), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3247), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3264), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3264), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3190), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2181), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(669), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3138), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(669), - [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(668), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 19), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3225), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 10), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 10), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 50), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 50), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 23), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 23), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 38), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 38), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 37), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 37), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3010), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2184), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 48), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 48), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 48), SHIFT_REPEAT(780), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 48), SHIFT_REPEAT(410), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(879), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3020), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(879), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(878), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3019), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2158), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2146), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 23), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 23), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 38), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 38), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2985), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2968), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(541), - [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3248), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(541), - [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(542), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 35), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 35), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3134), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2201), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(883), - [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(2986), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(883), - [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(884), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3120), - [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2122), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3244), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3103), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2140), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(901), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3178), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(901), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(893), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 4, .production_id = 28), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 4, .production_id = 28), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 4, .production_id = 28), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 4, .production_id = 28), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braces_expression, 3), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braces_expression, 3), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 3), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 3), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 7), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 7), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 2, .production_id = 5), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 2, .production_id = 5), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_suffix, 2), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_suffix, 2), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_operation, 1), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_operation, 1), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_expr, 3), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_expr, 3), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 2), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 2), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 12, .production_id = 80), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 12, .production_id = 80), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 11, .production_id = 79), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 11, .production_id = 79), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 77), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 77), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 76), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 76), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 74), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 74), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 73), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 73), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 8, .production_id = 70), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 8, .production_id = 70), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 8, .production_id = 69), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 8, .production_id = 69), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 7, .production_id = 65), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 7, .production_id = 65), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 7, .production_id = 61), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 7, .production_id = 61), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 45), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 45), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 6, .production_id = 54), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 6, .production_id = 54), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 45), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 45), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 33), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 33), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 5, .production_id = 5), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 5, .production_id = 5), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 5, .production_id = 39), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 5, .production_id = 39), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_item, 4, .production_id = 34), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_item, 4, .production_id = 34), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 33), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 33), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 3), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 3), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 4, .production_id = 5), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 4, .production_id = 5), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute, 3, .production_id = 21), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute, 3, .production_id = 21), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 24), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 24), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 4), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 4), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 24), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 24), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_operation, 3), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_operation, 3), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3069), + [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3069), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2127), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3055), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3055), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2997), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(492), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3187), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(492), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(490), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 10), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 10), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 19), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 19), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3184), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 50), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 50), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 23), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 23), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 37), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 37), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 38), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 38), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2917), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 48), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 48), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 48), SHIFT_REPEAT(467), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2057), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 48), SHIFT_REPEAT(579), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(985), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(2904), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(985), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(984), + [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2906), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 35), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 35), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2964), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 38), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 38), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2086), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(539), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3176), + [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(539), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(540), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 23), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 23), + [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2946), + [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2093), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2147), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3177), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2080), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(877), + [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(2944), + [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(877), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(878), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3195), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2089), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2966), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2977), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 66), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 66), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 67), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 67), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 68), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 68), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 71), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 71), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 72), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 72), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 10, .production_id = 75), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 10, .production_id = 75), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 8), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 8), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 11, .production_id = 78), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 11, .production_id = 78), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(582), + [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3070), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(582), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(581), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 20), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 20), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 7, .production_id = 62), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 7, .production_id = 62), [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 4, .production_id = 28), [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 4, .production_id = 28), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 57), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 57), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 36), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 36), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 47), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 47), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 49), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 49), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 20), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 20), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 6, .production_id = 52), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 6, .production_id = 52), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 5, .production_id = 40), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 5, .production_id = 40), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 7, .production_id = 62), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 7, .production_id = 62), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3096), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 6, .production_id = 55), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 6, .production_id = 55), - [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2197), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 41), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 41), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 58), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 58), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 5, .production_id = 40), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 5, .production_id = 40), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 5, .production_id = 40), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 5, .production_id = 40), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 7, .production_id = 59), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 7, .production_id = 59), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 66), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 66), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 68), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 68), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 67), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 67), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 8), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 8), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(820), - [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3206), - [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(818), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 71), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 71), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(707), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3174), - [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(707), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(706), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 72), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 72), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 10, .production_id = 75), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 10, .production_id = 75), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 11, .production_id = 78), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 11, .production_id = 78), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3069), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(736), - [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3064), - [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(736), - [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(737), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat, 2), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, .production_id = 27), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 27), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(400), - [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3123), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(400), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(399), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 1), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 1), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 2), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 3), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 2), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 4), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 3), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test, 1), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test, 1), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_entry, 4), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_entry, 4), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 53), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 51), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 44), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 26), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 15), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 26), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 43), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 17), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(482), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2603), - [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2603), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2165), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2616), - [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2616), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(581), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3036), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(449), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3160), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 25), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2115), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2154), - [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2161), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 1), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 16), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 6, .production_id = 60), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 1), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(2679), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2263), - [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2279), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2189), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 46), SHIFT_REPEAT(253), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 46), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 1), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(2761), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(177), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 3), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 3), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 51), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(388), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 64), SHIFT_REPEAT(3132), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 64), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(2178), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(242), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 3), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 3), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_prefix, 1), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2130), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 56), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_op, 1), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 9), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 1), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 2), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1, .production_id = 32), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unification, 3, .production_id = 15), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4697] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 4, .production_id = 63), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 22), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 4, .production_id = 28), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 4, .production_id = 28), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 4, .production_id = 28), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 4, .production_id = 28), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 36), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 36), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 5, .production_id = 40), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 5, .production_id = 40), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 5, .production_id = 40), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 5, .production_id = 40), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 41), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 41), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 47), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 47), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 49), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 49), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 6, .production_id = 52), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 6, .production_id = 52), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 6, .production_id = 55), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 6, .production_id = 55), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 57), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 57), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 58), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 58), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 7, .production_id = 59), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 7, .production_id = 59), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(785), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(2995), + [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(785), + [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(789), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 5, .production_id = 40), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 5, .production_id = 40), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3016), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3031), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(922), + [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(2980), + [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(921), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2082), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(732), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(3015), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(732), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(733), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat, 2), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, .production_id = 27), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 27), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(617), + [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(2960), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(617), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 14), SHIFT_REPEAT(622), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 1), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 1), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 2), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 3), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 3), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 4), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 2), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test, 1), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test, 1), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 53), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 44), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 26), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 51), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_entry, 4), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_entry, 4), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 15), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 26), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 17), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 43), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(522), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2549), + [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2549), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2122), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(697), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2949), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2555), + [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2555), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(845), + [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3072), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 25), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2062), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 6, .production_id = 60), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 1), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 16), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 1), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(2610), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2215), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), + [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2224), + [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2094), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2084), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 3), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 3), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(2128), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 51), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2139), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2126), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 46), SHIFT_REPEAT(357), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 46), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_prefix, 1), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(395), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 3), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 3), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(174), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 64), SHIFT_REPEAT(2950), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 64), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(2787), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 1), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(226), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 9), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_op, 1), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 1), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 56), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 4, .production_id = 63), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unification, 3, .production_id = 15), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 22), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 2), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1, .production_id = 32), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [4809] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), }; #ifdef __cplusplus diff --git a/test/corpus/expr.txt b/test/corpus/expr.txt index c8853ff..7232352 100644 --- a/test/corpus/expr.txt +++ b/test/corpus/expr.txt @@ -36,13 +36,12 @@ Index expression -------------------------------------------------------------------------------- (module - (sequence_operation (subscript (string (string_start) (string_content) (string_end)) - (integer)))) + (integer))) ================================================================================ slice expression @@ -53,7 +52,6 @@ slice expression -------------------------------------------------------------------------------- (module - (sequence_operation (subscript (string (string_start) @@ -61,7 +59,7 @@ slice expression (string_end)) (slice (integer) - (integer))))) + (integer)))) ================================================================================ conditional expression @@ -90,7 +88,6 @@ print("hello world", end="") -------------------------------------------------------------------------------- (module - (sequence_operation (call (attribute (identifier)) @@ -103,7 +100,7 @@ print("hello world", end="") (identifier) (string (string_start) - (string_end))))))) + (string_end)))))) ================================================================================ Comprehensions @@ -122,12 +119,11 @@ Comprehensions (identifier))) (for_in_clause (identifier) - (sequence_operation (call (attribute (identifier)) (argument_list - (integer))))))) + (integer)))))) ================================================================================ selector expression @@ -338,14 +334,13 @@ name3 = data["name"] or "name3_value" (dotted_name (identifier)) (boolean_operator - (sequence_operation (subscript (attribute (identifier)) (string (string_start) (string_content) - (string_end)))) + (string_end))) (string (string_start) (string_content) @@ -515,40 +510,79 @@ max(["gg","eggs"]) (string_start) (string_content) (string_end))))) - (sequence_operation - (concatenation - (list - (string - (string_start) - (string_content) - (string_end))) - (list - (string - (string_start) - (string_content) - (string_end)) - (string - (string_start) - (string_content) - (string_end))))) - (sequence_operation - (subscript - (list - (string - (string_start) - (string_content) - (string_end)) - (string - (string_start) - (string_content) - (string_end)) - (string - (string_start) - (string_content) - (string_end))) + (binary_operator + (list + (string + (string_start) + (string_content) + (string_end))) + (list + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end)))) + (subscript + (list + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end))) + (integer)) + (subscript + (list + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end))) + (slice + (integer) (integer))) - (sequence_operation - (subscript + (subscript + (list + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end)) + (string + (string_start) + (string_content) + (string_end))) + (slice + (integer) + (integer) + (integer))) + (call + (attribute + (identifier)) + (argument_list (list (string (string_start) @@ -557,16 +591,11 @@ max(["gg","eggs"]) (string (string_start) (string_content) - (string_end)) - (string - (string_start) - (string_content) - (string_end))) - (slice - (integer) - (integer)))) - (sequence_operation - (subscript + (string_end))))) + (call + (attribute + (identifier)) + (argument_list (list (string (string_start) @@ -575,47 +604,7 @@ max(["gg","eggs"]) (string (string_start) (string_content) - (string_end)) - (string - (string_start) - (string_content) - (string_end)) - (string - (string_start) - (string_content) - (string_end))) - (slice - (integer) - (integer) - (integer)))) - (sequence_operation - (call - (attribute - (identifier)) - (argument_list - (list - (string - (string_start) - (string_content) - (string_end)) - (string - (string_start) - (string_content) - (string_end)))))) - (sequence_operation - (call - (attribute - (identifier)) - (argument_list - (list - (string - (string_start) - (string_content) - (string_end)) - (string - (string_start) - (string_content) - (string_end))))))) + (string_end)))))) ================================================================================ Comparison operators